mirror of https://github.com/AxioDL/metaforce.git
39 lines
712 B
C++
39 lines
712 B
C++
#ifndef STRG_HPP
|
|
#define STRG_HPP
|
|
|
|
#include "HECLDatabase.hpp"
|
|
#include "HECLRuntime.hpp"
|
|
|
|
class CSTRGProject : public HECLDatabase::ProjectObjectBase
|
|
{
|
|
using HECLDatabase::ProjectObjectBase::ProjectObjectBase;
|
|
|
|
bool _cookObject(FDataAppender dataAppender,
|
|
DataEndianness endianness, DataPlatform platform)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void _gatherDeps(FDepAdder depAdder)
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
class CSTRGRuntime : public HECLRuntime::RuntimeObjectBase
|
|
{
|
|
using HECLRuntime::RuntimeObjectBase::RuntimeObjectBase;
|
|
|
|
bool _objectFinishedLoading(const void* data, size_t len)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void _objectWillUnload()
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
#endif // STRG_HPP
|