2023-10-07 19:29:53 +02:00
|
|
|
#include "StaticMeshVertexData.h"
|
|
|
|
|
|
|
|
|
|
using namespace Seele;
|
|
|
|
|
|
2023-10-26 18:37:29 +02:00
|
|
|
extern List<VertexData*> vertexDataList;
|
|
|
|
|
|
|
|
|
|
StaticMeshVertexData::StaticMeshVertexData(Gfx::PGraphics graphics)
|
|
|
|
|
: VertexData(graphics)
|
|
|
|
|
{
|
|
|
|
|
vertexDataList.add(this);
|
|
|
|
|
}
|
2023-10-07 19:29:53 +02:00
|
|
|
|
|
|
|
|
StaticMeshVertexData::~StaticMeshVertexData()
|
|
|
|
|
{}
|
|
|
|
|
|