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

#include "collector.hpp"

class FlatLayer : public FlatCollector
{
    
public:

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

#endif