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