mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
28 lines
783 B
C#
28 lines
783 B
C#
using System;
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
/// <summary>
|
|
/// Represents a plane change requested by a nirbi client.
|
|
/// </summary>
|
|
public class PlaneChangeMessage : Message
|
|
{
|
|
/// <summary>
|
|
/// Whether the plane change is ok or not.
|
|
/// Used when the server is replying to a plane change request.
|
|
/// </summary>
|
|
public bool IsOK = false;
|
|
/// <summary>
|
|
/// Ţhe new plane name that the nibri client would like to switch to.
|
|
/// </summary>
|
|
public string NewPlaneName;
|
|
|
|
/// <summary>
|
|
/// Create a new plane change message.
|
|
/// </summary>
|
|
/// <param name="inNewPlaneName">The new plane name that the nibri client would like to switch to.</param>
|
|
public PlaneChangeMessage(string inNewPlaneName)
|
|
{
|
|
NewPlaneName = inNewPlaneName;
|
|
}
|
|
}
|
|
}
|