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