OPTPiX SpriteStudio SDK
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
bind_SsAnimeDecoder.h
1 #ifndef __bind_ANIMESTATE__
2 #define __bind_ANIMESTATE__
3 
4 
5 #include "package_SpriteStudio.h"
6 
7 
8 class Bind_SsPartAnime;
9 class Bind_SsPart;
10 class SsAnimeDecoder;
11 class Bind_SsPartState;
12 
14 {
15 private:
16 
17 public:
18  SsAnimeDecoder* m_decoder;
19 
21  virtual ~Bind_SsAnimeDecoder();
22  bool debug();
23 
24  void setFrame( int f );
25  void update();
26 
27  int getPartNum();
28  Bind_SsPart* getPart(int index);
29  Bind_SsPartAnime* getPartAnime(int index);
30  Bind_SsPartState* getPartState( int index );
31 
32  int getFrameLength();
33  int getAnimeFPS();
34 
35 
36 };
37 
38 
39 
40 #endif