You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
234 B
12 lines
234 B
3 years ago
|
#pragma once
|
||
|
|
||
|
#include <SFML/Graphics/Rect.hpp>
|
||
|
|
||
|
#include <Config.hpp>
|
||
|
|
||
|
class TileType {
|
||
|
public:
|
||
|
sf::IntRect texture_rect;
|
||
|
sf::IntRect ghost_texture_rect;
|
||
|
TileType(sf::IntRect _texture_rect, sf::IntRect _ghost_texture_rect);
|
||
|
};
|