summaryrefslogtreecommitdiffstats
path: root/engine/include/layer.hpp
blob: c6ff0c927e91c62f2dbf7bec1c41e218d5c9551a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __FLATLAYER_H__
#define __FLATLAYER_H__

#include "collector.hpp"

namespace flat {
    class FlatLayer : public FlatCollector
    {
        
    public:

        FlatLayer(FlatLayer *parent); 
        ~FlatLayer();
    };
}
#endif