restructuring and updating CMakeLists

This commit is contained in:
2017-07-16 14:04:41 -07:00
parent 769c37f148
commit aa593870df
16 changed files with 96 additions and 26 deletions

30
include/Map.h Normal file
View File

@@ -0,0 +1,30 @@
#pragma once
#include "Tile.h"
#include <SFML/System/Vector2.hpp>
class Map {
public:
// Width and height of the map in individual cells
static const int CELLS_HEIGHT = 153;
static const int CELLS_WIDTH = 319;
// Constructors
Map();
~Map();
// Get the tile at the specified position, overloaded
Tile* getTile(sf::Vector2i position);
Tile* getTile(int x_, int y_);
bool isTileSolid(sf::Vector2i);
// completely replaces the data at the specified position
void overwriteTile(sf::Vector2i position, Tile* data);
private:
void Init();
// Data
Tile* tileArray[319][153];
};