mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
26 lines
727 B
C++
26 lines
727 B
C++
/* Copyright 2003-2007 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "V8Tree/Instance.h"
|
|
|
|
namespace RBX {
|
|
|
|
extern const char* const sConfiguration;
|
|
class Configuration
|
|
: public DescribedCreatable<Configuration, Instance, sConfiguration>
|
|
{
|
|
private:
|
|
typedef DescribedCreatable<Configuration, Instance, sConfiguration> Super;
|
|
public:
|
|
Configuration();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Instance
|
|
/*override*/ bool askForbidChild(const Instance* instance) const;
|
|
/*override*/ bool askSetParent(const Instance* instance) const;
|
|
/*override*/ void onServiceProvider(ServiceProvider* oldProvider, ServiceProvider* newProvider);
|
|
|
|
};
|
|
} |