mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 20:41:47 +01:00
Add basic controller Support
Fix more memory leaks (seeing a trend here)
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
#pragma once
|
||||
#include <map>
|
||||
|
||||
#include "GridSystem/WorldTile.h"
|
||||
|
||||
|
||||
class GroundTileType;
|
||||
|
||||
@@ -10,6 +12,23 @@ public:
|
||||
static GroundTileTypeManager* GetInstance();
|
||||
static void DestroyInstance();
|
||||
|
||||
GroundTileType* AIR;
|
||||
GroundTileType* DIRT;
|
||||
|
||||
GroundTileType* STONE;
|
||||
GroundTileType* LAVA;
|
||||
|
||||
GroundTileType* IRON;
|
||||
GroundTileType* BRONZE;
|
||||
GroundTileType* GOLD;
|
||||
|
||||
GroundTileType* HARD_LEFT;
|
||||
GroundTileType* HARD_RIGHT;
|
||||
GroundTileType* HARD_MIDDLE;
|
||||
|
||||
GroundTileType* GRASS;
|
||||
|
||||
|
||||
//
|
||||
// static GroundTileType* AIR{ nullptr };
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user