ZoneCommon: List zone content in the order it was loaded

This commit is contained in:
Jan
2020-02-19 14:10:50 +01:00
parent a7b59ea3d7
commit f0b66f0a35
11 changed files with 123 additions and 116 deletions

View File

@ -1,5 +1,4 @@
#pragma once
#include "Zone/Zone.h"
#include "GameLanguage.h"
#include <vector>
@ -8,6 +7,7 @@ class Zone;
class IGame
{
public:
virtual const std::string& GetName() = 0;
virtual void AddZone(Zone* zone) = 0;
virtual void RemoveZone(Zone* zone) = 0;
virtual std::vector<Zone*> GetZones() = 0;