Ejemplo n.º 1
0
 public Participant(string name, ParticipantType partType)
 {
     Name                = name;
     PartType            = partType;
     AnimationBinaryData = AnimationInfoDatabase.GetAnimationBinaryData(PartType);
     Mode                = ParticipantMode.idle;
     X = 0;
     Y = 0;
 }
Ejemplo n.º 2
0
 public ParticipantIntrinsicState(ParticipantType partType)
 {
     AnimationBinaryData = AnimationInfoDatabase.GetAnimationBinaryData(partType);
 }