mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-03 06:35:51 +00:00
38 lines
687 B
C++
38 lines
687 B
C++
#ifndef MATR_HPP
|
|
#define MATR_HPP
|
|
|
|
#include "HECLDatabase.hpp"
|
|
|
|
class CMATRProject : public HECLDatabase::ProjectObjectBase
|
|
{
|
|
using HECLDatabase::ProjectObjectBase::ProjectObjectBase;
|
|
|
|
bool _cookObject(FDataAppender dataAppender,
|
|
DataEndianness endianness, DataPlatform platform)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void _gatherDeps(FDepAdder depAdder)
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
class CMATRRuntime : public HECLDatabase::RuntimeObjectBase
|
|
{
|
|
using HECLDatabase::RuntimeObjectBase::RuntimeObjectBase;
|
|
|
|
bool _objectFinishedLoading(const void* data, size_t len)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void _objectWillUnload()
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
#endif // MATR_HPP
|