GAF Library
Generic Animation Format
 All Classes Functions Pages
GAFAnimationSequence.h
1 #pragma once
2 
3 #ifndef __GAF_ANIMATION_SEQUENCE_H__
4 #define __GAF_ANIMATION_SEQUENCE_H__
5 
7 {
8 public:
9  std::string name;
10  int startFrameNo;
11  int endFrameNo;
12  inline int length() const
13  {
14  return endFrameNo - startFrameNo;
15  }
16 };
17 
18 #endif // __GAF_ANIMATION_SEQUENCE_H__
Definition: GAFAnimationSequence.h:6