Files
UnrealEngine/Engine/Source/Programs/HeadlessChaos/Resource/CylinderGeometry.h
2025-05-18 13:04:45 +08:00

18 lines
332 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Chaos/Real.h"
#include "Chaos/Array.h"
namespace GeometryCollectionTest
{
class CylinderGeometry
{
public:
CylinderGeometry() {}
~CylinderGeometry() {}
static const TArray<float> RawVertexArray;
static const TArray<int32> RawIndicesArray;
};
}