2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-17 13:13:28 +00:00
metaforce/hecl/lib/Runtime/HECLRuntime.cpp
2015-07-22 09:14:50 -10:00

29 lines
446 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)
{
return std::shared_ptr<Entity>();
}
std::shared_ptr<Entity> Runtime::loadAsync(const Hash& pathHash,
SGroupLoadStatus* statusOut)
{
return std::shared_ptr<Entity>();
}
}
}