using System; namespace Nibriboard.Client.Messages { /// /// Represents a plane change requested by a nirbi client. /// public class PlaneChangeMessage : Message { /// /// Whether the plane change is ok or not. /// Used when the server is replying to a plane change request. /// public bool IsOK = false; /// /// Ţhe new plane name that the nibri client would like to switch to. /// public string NewPlaneName; /// /// Create a new plane change message. /// /// The new plane name that the nibri client would like to switch to. public PlaneChangeMessage(string inNewPlaneName) { NewPlaneName = inNewPlaneName; } } }