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

#include "flatcollector.h"

class FlatLayer : public FlatCollector
{
    
public:

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

#endif