parent
e059d5e39e
commit
8c04422f5d
@ -0,0 +1,10 @@
|
||||
//
|
||||
// Created by draia on 03/02/23.
|
||||
//
|
||||
|
||||
#include "Tile.h"
|
||||
|
||||
const Position &Tile::pos() const
|
||||
{
|
||||
return m_pos;
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
//
|
||||
// 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
|
Loading…
Reference in new issue