mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
25 lines
690 B
C++
25 lines
690 B
C++
/* Copyright 2003-2005 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "V8DataModel/ModelInstance.h"
|
|
|
|
namespace RBX {
|
|
|
|
extern const char* const sStatusInstance;
|
|
class StatusInstance
|
|
: public DescribedCreatable<StatusInstance, ModelInstance, sStatusInstance, Reflection::ClassDescriptor::INTERNAL>
|
|
{
|
|
private:
|
|
typedef DescribedCreatable<StatusInstance, ModelInstance, sStatusInstance, Reflection::ClassDescriptor::INTERNAL> Super;
|
|
|
|
public:
|
|
StatusInstance();
|
|
|
|
protected:
|
|
/*override*/ bool askSetParent(const Instance* instance) const;
|
|
/*override*/ bool askForbidParent(const Instance* instance) const { return !askSetParent(instance); }
|
|
};
|
|
|
|
} // namespace
|