1$#include "Urho2D/Drawable2D.h"
2
3enum BlendMode {};
4
5const float PIXEL_SIZE;
6
7class Drawable2D : public Drawable
8{
9public:
10    void SetLayer(int layer);
11    void SetOrderInLayer(int orderInLayer);
12
13    int GetLayer() const;
14    int GetOrderInLayer() const;
15
16    tolua_property__get_set int layer;
17    tolua_property__get_set int orderInLayer;
18};
19