metaforce/hecl/dataspec/DUMB.hpp

40 lines
686 B
C++
Raw Normal View History

2015-05-21 02:33:05 +00:00
#ifndef DUMB_HPP
#define DUMB_HPP
2015-06-09 22:57:21 +00:00
#include "HECLRuntime.hpp"
2015-05-21 02:33:05 +00:00
2015-06-09 22:19:59 +00:00
class CDUMBProject : 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:57:21 +00:00
class CDUMBRuntime : public HECLRuntime::RuntimeObjectBase
2015-05-21 02:33:05 +00:00
{
2015-06-09 22:57:21 +00:00
using HECLRuntime::RuntimeObjectBase::RuntimeObjectBase;
2015-05-21 02:33:05 +00:00
bool _objectFinishedLoading(const void* data, size_t len)
{
return true;
}
void _objectWillUnload()
{
}
};
#endif // DUMB_HPP