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