summaryrefslogtreecommitdiffstats
path: root/engine/actor.cpp
blob: 4991f91b6f619ccd0d9207fac2d34f897f83ddbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "actor.hpp"

#include "flatland.hpp"

using namespace flat;

FlatActor::FlatActor(FlatCollector *parent, FlatBound *bounds)

    : FlatCollector(parent), m_bounds(bounds)
{
}

FlatActor::~FlatActor()
{
    
}

void FlatActor::setBounds(FlatBound * bounds)
{
    m_bounds = m_bounds;
}

FlatBound * FlatActor::getBounds() const
{
    return m_bounds;
}