mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-11 15:05:04 +00:00
Remove unused xblocks vector in Zone
This commit is contained in:
parent
b360816190
commit
43966e8e00
@ -8,7 +8,6 @@
|
|||||||
#include "Pool/ZoneAssetPools.h"
|
#include "Pool/ZoneAssetPools.h"
|
||||||
#include "Game/IGame.h"
|
#include "Game/IGame.h"
|
||||||
#include "Game/GameLanguage.h"
|
#include "Game/GameLanguage.h"
|
||||||
#include "Zone/XBlock.h"
|
|
||||||
#include "ZoneMemory.h"
|
#include "ZoneMemory.h"
|
||||||
|
|
||||||
class IGame;
|
class IGame;
|
||||||
@ -16,7 +15,6 @@ class ZoneAssetPools;
|
|||||||
|
|
||||||
class Zone
|
class Zone
|
||||||
{
|
{
|
||||||
std::vector<XBlock*> m_blocks;
|
|
||||||
std::unique_ptr<ZoneMemory> m_memory;
|
std::unique_ptr<ZoneMemory> m_memory;
|
||||||
|
|
||||||
bool m_registered;
|
bool m_registered;
|
||||||
@ -31,6 +29,10 @@ public:
|
|||||||
|
|
||||||
Zone(std::string name, zone_priority_t priority, IGame* game);
|
Zone(std::string name, zone_priority_t priority, IGame* game);
|
||||||
~Zone();
|
~Zone();
|
||||||
|
Zone(const Zone& other) = delete;
|
||||||
|
Zone(Zone&& other) noexcept = default;
|
||||||
|
Zone& operator=(const Zone& other) = delete;
|
||||||
|
Zone& operator=(Zone&& other) noexcept = default;
|
||||||
|
|
||||||
void Register();
|
void Register();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user