-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTile.h
41 lines (34 loc) · 784 Bytes
/
Tile.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <SFML/Graphics.hpp>
#include <SFML/System.hpp>
#include <SFML/Window.hpp>
#ifndef TILE_H
#define TILE_H
class Tile
{
private:
unsigned int row;
unsigned int col;
int len_px;
int x_pos;
int y_pos;
sf::VertexArray outline_verts;
sf::VertexArray verts;
sf::Color outline_color;
sf::Color color;
unsigned int outline_thickness;
public:
Tile();
Tile(unsigned int, unsigned int, int, int, int, int);
void setSize(const int);
void setPosition(const int, const int);
void setColor(sf::Color);
void setToHoveredColor();
void setToNonHoveredColor();
unsigned int getRow();
unsigned int getCol();
sf::Color& getColor();
bool isHovered(int&, int&);
void clearOutline();
void clear();
};
#endif