mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-16 09:48:00 -05:00
Import code from previous AssetBuilder version
This commit is contained in:
12
src/ZoneCommon/Game/IGame.h
Normal file
12
src/ZoneCommon/Game/IGame.h
Normal file
@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
#include "Zone/Zone.h"
|
||||
#include <vector>
|
||||
|
||||
class Zone;
|
||||
|
||||
class IGame
|
||||
{
|
||||
public:
|
||||
virtual void AddZone(Zone* zone) = 0;
|
||||
virtual std::vector<Zone*> GetZones() = 0;
|
||||
};
|
Reference in New Issue
Block a user