Exemplo n.º 1
0
 public AnimationSet(
     int length,
     Animation2D fv,
     Animation2D lsv,
     Animation2D rsv,
     Animation2D bv
     )
 {
     animationLength  = length;
     frontView        = fv;
     leftSideView     = lsv;
     rightSideView    = rsv;
     backView         = bv;
     skillsAnimations = null;
 }
Exemplo n.º 2
0
 public void AddSkillAnimation(Animation2D skillFrames)
 {
     //todo
     //check legth compatibility
     skillsAnimations.Add(skillFrames);
 }