1
0
Fork 0
Nibriboard/Nibriboard/Client/Messages/ChunkUpdateRequestMessage.cs

20 lines
442 B
C#

using System;
using System.Collections.Generic;
using Nibriboard.RippleSpace;
namespace Nibriboard.Client.Messages
{
public class ChunkUpdateRequestMessage : Message
{
/// <summary>
/// A list of chunks that the client has intentionally forgotten about, and will need
/// to be resent to the client.
/// </summary>
public List<dynamic> ForgottenChunks = new List<dynamic>();
public ChunkUpdateRequestMessage()
{
}
}
}