Пример #1
0
 public static void PerformAnimation(double x, double y, ParticipantMode mode, int[] animationdata)
 {
     if (animationdata == null)
     {
         throw new ArgumentException("Tried to call PerformAnimation without animation data");
     }
 }
Пример #2
0
 public ParticipantExtrinsicState(string name, ParticipantType partType)
 {
     Name     = name;
     PartType = partType;
     Mode     = ParticipantMode.idle;
     X        = 0;
     Y        = 0;
 }
Пример #3
0
 public Participant(string name, ParticipantType partType)
 {
     Name                = name;
     PartType            = partType;
     AnimationBinaryData = AnimationInfoDatabase.GetAnimationBinaryData(PartType);
     Mode                = ParticipantMode.idle;
     X = 0;
     Y = 0;
 }