mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-01 05:10:54 +00:00
17 lines
386 B
C++
17 lines
386 B
C++
|
|
#include "Precomp.h"
|
|
#include "VertexDeclaration.h"
|
|
|
|
VertexDeclaration::VertexDeclaration(const VertexElement* elements, int count) : Elements(elements, elements + count)
|
|
{
|
|
}
|
|
|
|
VertexDeclaration* VertexDeclaration_New(const VertexElement* elements, int count)
|
|
{
|
|
return new VertexDeclaration(elements, count);
|
|
}
|
|
|
|
void VertexDeclaration_Delete(VertexDeclaration* decl)
|
|
{
|
|
delete decl;
|
|
}
|