summaryrefslogtreecommitdiffstats
path: root/engine/include/actor.hpp
blob: b5a828555232404daa200b5837802d0b2e3d00ba (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
#ifndef __FLATACTOR_H__
#define __FLATACTOR_H__

#include "collector.hpp"

class FlatBound;

class FlatActor : public FlatCollector
{
    // TODO, event binding
    // TODO, serial binding
    
    /* Bounds */
    FlatBound * bounds;

public:

    FlatActor(FlatCollector *parent = 0, FlatBound *bounds = 0);

    ~FlatActor();


    void setBounds(FlatBound * bounds);
    FlatBound * getBounds() const;
};

#endif