Drawable2D.pkg 372 B

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