now uses cmake

This commit is contained in:
MitchellHansen
2016-11-25 21:37:26 -08:00
parent fc11ebfafb
commit 394e98baa7
20 changed files with 416 additions and 280 deletions

22
Tile.h Normal file
View File

@@ -0,0 +1,22 @@
#pragma once
#include <SFML\Graphics.hpp>
class Tile {
public:
Tile(bool solid_, double movement_penalty_, sf::Color color_);
Tile();
~Tile();
bool isSolid();
double getPenalty();
sf::Color getColor();
void Rewrite(bool solid_, double movement_penalty_, sf::Color color_);
private:
bool solid = false;
double movement_penalty = 0.0;
sf::Color color;
};