#ifndef HMDL_HPP #define HMDL_HPP #include "HECLDatabase.hpp" #include "HECLRuntime.hpp" class CHMDLProject : public HECLDatabase::ProjectObjectBase { using HECLDatabase::ProjectObjectBase::ProjectObjectBase; bool _cookObject(FDataAppender dataAppender, DataEndianness endianness, DataPlatform platform) { return true; } void _gatherDeps(FDepAdder depAdder) { } }; class CHMDLRuntime : public HECLRuntime::RuntimeObjectBase { using HECLRuntime::RuntimeObjectBase::RuntimeObjectBase; bool _objectFinishedLoading(const void* data, size_t len) { return true; } void _objectWillUnload() { } }; #endif // HMDL_HPP