mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
20 lines
298 B
C++
20 lines
298 B
C++
#include "stdafx.h"
|
|
#include "Humanoid/StatusInstance.h"
|
|
|
|
namespace RBX {
|
|
|
|
const char* const sStatusInstance = "Status";
|
|
|
|
StatusInstance::StatusInstance()
|
|
:Super()
|
|
{
|
|
setName(sStatusInstance);
|
|
lockName();
|
|
}
|
|
bool StatusInstance::askSetParent(const Instance* instance) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
}
|