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.

22 lines
242 B

//
// Created by draia on 03/02/23.
//
#ifndef LABYRINTH_TILE_H
#define LABYRINTH_TILE_H
#include "../position/Position.h"
class Tile
{
private:
Position m_pos;
public:
const Position &pos() const;
};
#endif //LABYRINTH_TILE_H