aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/cpp/Tile.cpp
blob: 9fc436aaeaa903997ac47caad70176beb7ab1a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "Tile.hpp"

bool Tile::actor(Actor *actor)
{
    if (_actor != nullptr) {
        return false;
    }

    _actor = actor;
    return true;
}