GAF Library
Generic Animation Format
 All Classes Functions Pages
GAFAnimationFrame.h
1 #pragma once
2 
3 #ifndef __GAF_ANIMATION_FRAME__
4 #define __GAF_ANIMATION_FRAME__
5 
6 class GAFTextureAtlas;
8 
10 {
11 public:
12  typedef std::vector<GAFSubobjectState*> SubobjectStates_t;
13 private:
14  SubobjectStates_t m_subObjectStates;
15 public:
18  const SubobjectStates_t& getObjectStates() const;
19 
20  void pushObjectState(GAFSubobjectState*);
21 };
22 
23 #endif // __GAF_ANIMATION_FRAME__
Definition: GAFSubobjectState.h:16
Definition: GAFTextureAtlas.h:9
Definition: GAFAnimationFrame.h:9