mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
25 lines
511 B
C#
25 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using Nibriboard.RippleSpace;
|
|
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
public class ChunkUpdateMessage : Message
|
|
{
|
|
public List<Chunk> Chunks = new List<Chunk>();
|
|
|
|
public ChunkUpdateMessage()
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// Creates a new ChunkUpdateMessaage containing the given list of chunks.
|
|
/// </summary>
|
|
/// <param name="chunks">Chunks.</param>
|
|
public ChunkUpdateMessage(params Chunk[] chunks)
|
|
{
|
|
Chunks = new List<Chunk>(chunks);
|
|
}
|
|
}
|
|
}
|
|
|