2022-04-14 20:03:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-04-16 03:13:15 +00:00
|
|
|
#include "SDL2/SDL.h"
|
2022-04-14 20:03:32 +00:00
|
|
|
|
|
|
|
#include "app_consts.hpp"
|
|
|
|
|
|
|
|
class Piece
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Piece();
|
|
|
|
Piece(Type type, Team team, Visibility vis);
|
|
|
|
|
|
|
|
Team get_team();
|
|
|
|
Type get_type();
|
|
|
|
Visibility get_vis();
|
|
|
|
private:
|
|
|
|
Type type;
|
|
|
|
Team team;
|
|
|
|
Visibility vis;
|
|
|
|
};
|