mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
20 lines
371 B
C#
20 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using RippleSpace;
|
|
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
/// <summary>
|
|
/// Represents an update of where a group of connected clients are.
|
|
/// </summary>
|
|
public class ClientStatesMessage : Message
|
|
{
|
|
public List<ClientState> ClientStates = new List<ClientState>();
|
|
|
|
public ClientStatesMessage()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|