2015-07-04 06:03:59 +00:00
|
|
|
#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
|
|
|
}
|