mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
21 lines
277 B
C++
21 lines
277 B
C++
|
|
#pragma once
|
|
|
|
#include "tarray.h"
|
|
#include "vectors.h"
|
|
|
|
namespace hwrenderer
|
|
{
|
|
|
|
class LevelMesh
|
|
{
|
|
public:
|
|
virtual ~LevelMesh() = default;
|
|
|
|
TArray<FVector3> MeshVertices;
|
|
TArray<int> MeshUVIndex;
|
|
TArray<uint32_t> MeshElements;
|
|
TArray<int> MeshSurfaces;
|
|
};
|
|
|
|
} // namespace
|