2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-19 05:25:51 +00:00
metaforce/hecl/lib/runtime/HECLRuntime.cpp
2015-07-03 20:03:59 -10:00

27 lines
370 B
C++

#include "HECL/Runtime.hpp"
namespace HECL
{
namespace Runtime
{
Runtime::Runtime(const HECL::SystemString& hlpkDirectory)
{
}
Runtime::~Runtime()
{
}
std::shared_ptr<Entity> Runtime::loadSync(const Hash& pathHash)
{
}
std::shared_ptr<Entity> Runtime::loadAsync(const Hash& pathHash,
SGroupLoadStatus* statusOut)
{
}
}
}