mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
23 lines
515 B
C#
23 lines
515 B
C#
using System;
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
/// <summary>
|
|
/// Sent by the server to tell a client that they have switched planes successfully.
|
|
/// </summary>
|
|
public class PlaneChangeOkMessage : Message
|
|
{
|
|
/// <summary>
|
|
/// The name of the plane that the client is now on.
|
|
/// </summary>
|
|
public string NewPlaneName;
|
|
|
|
/// <summary>
|
|
/// The size of the grid on the plane that the client has switched to.
|
|
/// </summary>
|
|
public int GridSize;
|
|
|
|
public PlaneChangeOkMessage()
|
|
{
|
|
}
|
|
}
|
|
}
|