Animation2D.pkg 334 B

123456789101112
  1. $#include "Animation2D.h"
  2. class Animation2D : RefCounted
  3. {
  4. const String GetName() const;
  5. float GetLength() const;
  6. bool IsLooped() const;
  7. tolua_readonly tolua_property__get_set String name;
  8. tolua_readonly tolua_property__get_set float length;
  9. tolua_readonly tolua_property__is_set bool looped;
  10. };