ZoneCodeGenerator: Add possibility to define custom actions that should be performed after loading a certain Structure

This commit is contained in:
Jan
2020-01-03 17:25:10 +01:00
parent c995a12001
commit bdb0958c16
11 changed files with 251 additions and 30 deletions

View File

@ -0,0 +1,6 @@
#include "AssetLoadingActions.h"
AssetLoadingActions::AssetLoadingActions(Zone* zone)
{
m_zone = zone;
}

View File

@ -0,0 +1,12 @@
#pragma once
#include "Zone/Zone.h"
class AssetLoadingActions
{
protected:
Zone* m_zone;
public:
explicit AssetLoadingActions(Zone* zone);
};