metaforce/hecl/lib/runtime/HECLRuntime.cpp

27 lines
370 B
C++
Raw Normal View History

#include "HECL/Runtime.hpp"
2015-06-09 22:19:59 +00:00
2015-06-10 02:40:03 +00:00
namespace HECL
{
namespace Runtime
2015-06-09 22:19:59 +00:00
{
2015-06-10 02:40:03 +00:00
Runtime::Runtime(const HECL::SystemString& hlpkDirectory)
2015-06-09 22:19:59 +00:00
{
}
2015-06-10 02:40:03 +00:00
Runtime::~Runtime()
2015-06-09 22:19:59 +00:00
{
}
2015-06-10 02:40:03 +00:00
std::shared_ptr<Entity> Runtime::loadSync(const Hash& pathHash)
2015-06-09 22:19:59 +00:00
{
}
2015-06-10 02:40:03 +00:00
std::shared_ptr<Entity> Runtime::loadAsync(const Hash& pathHash,
SGroupLoadStatus* statusOut)
2015-06-09 22:19:59 +00:00
{
}
}
2015-06-10 02:40:03 +00:00
}