public bUserQuit(SlimClient client, string reason, QuitNewState state = QuitNewState.Gone) { this.client = client; UserId = client.UserId; Reason = reason; State = state; }
public bUserQuit(SerializationReader sr) { UserId = sr.ReadInt32(); State = (QuitNewState)sr.ReadByte(); }