| 123456789101112131415161718192021222324252627282930313233343536373839 |
- #include "MeshSubSet.h"
- namespace gameplay
- {
- MeshSubSet::MeshSubSet(void)
- {
-
- }
- MeshSubSet::~MeshSubSet(void)
- {
- }
- byte MeshSubSet::getTypeId(void)
- {
- return MESHPART_ID;
- }
- const char* MeshSubSet::getElementName(void)
- {
- return "MeshSubSet";
- }
- void MeshSubSet::writeBinary(FILE* file)
- {
- write(getTypeId(), file);
- }
- void MeshSubSet::writeText(FILE* file)
- {
- fprintElementStart(file);
- fprintfElement(file, "%d ", "indices", indices);
- fprintElementEnd(file);
- }
- }
|