metaforce/hecl/dataspec/MATR.hpp

38 lines
687 B
C++
Raw Normal View History

2015-05-21 02:33:05 +00:00
#ifndef MATR_HPP
#define MATR_HPP
#include "HECLDatabase.hpp"
2015-06-09 22:19:59 +00:00
class CMATRProject : public HECLDatabase::ProjectObjectBase
2015-05-21 02:33:05 +00:00
{
2015-06-09 22:19:59 +00:00
using HECLDatabase::ProjectObjectBase::ProjectObjectBase;
bool _cookObject(FDataAppender dataAppender,
2015-05-21 02:33:05 +00:00
DataEndianness endianness, DataPlatform platform)
{
return true;
}
2015-06-09 22:19:59 +00:00
void _gatherDeps(FDepAdder depAdder)
2015-05-21 02:33:05 +00:00
{
}
};
2015-06-09 22:19:59 +00:00
class CMATRRuntime : public HECLDatabase::RuntimeObjectBase
2015-05-21 02:33:05 +00:00
{
2015-06-09 22:19:59 +00:00
using HECLDatabase::RuntimeObjectBase::RuntimeObjectBase;
2015-05-21 02:33:05 +00:00
bool _objectFinishedLoading(const void* data, size_t len)
{
return true;
}
void _objectWillUnload()
{
}
};
#endif // MATR_HPP