2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-10-04 20:39:35 +00:00
metaforce/hecl/lib/runtime/HECLRuntime.cpp
2015-06-09 16:40:03 -10:00

27 lines
369 B
C++

#include "HECLRuntime.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)
{
}
}
}