summaryrefslogtreecommitdiffstats
path: root/engine/include/actor.hpp
blob: 1902704ebc1932c7571c6f8f13b04c7195dd820a (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
28
29
30
31
#ifndef __FLATACTOR_H__
#define __FLATACTOR_H__

#include "collector.hpp"

namespace flat {

class FlatBound;

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

public:

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

    ~FlatActor();


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

}

#endif