ACR_ServerCommunicator.CharacterPartEvent.CharacterPartEvent C# (CSharp) Method

CharacterPartEvent() public method

Create a new CharacterPartEvent.
public CharacterPartEvent ( ACR_ServerCommunicator.GameCharacter Character, bool IsDM, GameServer Server ) : System
Character ACR_ServerCommunicator.GameCharacter Supplies the character.
IsDM bool Supplies true if the character was DM /// privileged at part time.
Server GameServer Supplies the server that the character has /// parted.
return System
        public CharacterPartEvent(GameCharacter Character, bool IsDM, GameServer Server)
        {
            this.Character = Character;
            this.IsDM = IsDM;
            this.Server = Server;
        }