Minor bugfix, added reflection notify

This commit is contained in:
Vulpovile
2023-11-09 00:36:59 -08:00
parent 11362f0f63
commit 39d91f3943
13 changed files with 48 additions and 31 deletions

View File

@@ -21,6 +21,7 @@ Instance::Instance(void)
canDelete = true;
}
Instance::~Instance(void)
{
for(size_t i = 0; i < children.size(); i++)
@@ -36,6 +37,10 @@ Instance::Instance(const Instance &oinst)
//CLONE WITH REFLECTION!!!
}
void Instance::reflectionNotify(ReflectionProperty<void*> * property){
}
//Perhaps should be separated
void Instance::render(RenderDevice* rd)
{