summaryrefslogtreecommitdiffstats
path: root/engine/actor.cpp
blob: 525939d0d849bed10add958069fe4a6a0f8b31da (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
#include "flatactor.h"

#include "flatland.h"

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

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

FlatActor::~FlatActor()
{
    
}

void FlatActor::setBounds(FlatBound * bounds)
{
    this->bounds = bounds;
}

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