AnimationSet2D.pkg 300 B

12345678910
  1. $#include "Urho2D/AnimationSet2D.h"
  2. class AnimationSet2D : Resource
  3. {
  4. unsigned GetNumAnimations() const;
  5. Animation2D* GetAnimation(unsigned index) const;
  6. Animation2D* GetAnimation(const String name) const;
  7. tolua_readonly tolua_property__get_set unsigned numAnimations;
  8. };