foxygit / GZDoom Log in
commits tags

/src/common/rendering/hwrenderer/data/hw_levelmesh.h · 277 B

raw
#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