mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
/* Copyright 2014 ROBLOX Corporation, All Rights Reserved */
|
||||
#pragma once
|
||||
|
||||
#include "Util/BinaryString.h"
|
||||
#include "V8Tree/Instance.h"
|
||||
#include "V8Tree/Service.h"
|
||||
#include "V8DataModel/FlyweightService.h"
|
||||
|
||||
#include <boost/unordered_map.hpp>
|
||||
#include "Value.h"
|
||||
|
||||
namespace RBX
|
||||
{
|
||||
class PartOperation;
|
||||
|
||||
extern const char *const sNonReplicatedCSGDictionaryService;
|
||||
|
||||
class NonReplicatedCSGDictionaryService
|
||||
: public DescribedCreatable<NonReplicatedCSGDictionaryService, FlyweightService, sNonReplicatedCSGDictionaryService, Reflection::ClassDescriptor::PERSISTENT, Security::Roblox>
|
||||
{
|
||||
protected:
|
||||
typedef DescribedCreatable<NonReplicatedCSGDictionaryService, FlyweightService, sNonReplicatedCSGDictionaryService, Reflection::ClassDescriptor::PERSISTENT, Security::Roblox> Super;
|
||||
|
||||
virtual void refreshRefCountUnderInstance(RBX::Instance* instance);
|
||||
|
||||
void reparentChildData(shared_ptr<RBX::Instance> childInstance);
|
||||
|
||||
public:
|
||||
|
||||
NonReplicatedCSGDictionaryService();
|
||||
|
||||
void storeData(PartOperation& partOperation, bool forceIncrement = false);
|
||||
void retrieveData(PartOperation& partOperation);
|
||||
|
||||
void storeAllDescendants(shared_ptr<RBX::Instance> instance);
|
||||
void retrieveAllDescendants(shared_ptr<RBX::Instance> instance);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user