namespace ACE.Common
{
public class PreloadedLandblocks
{
///
/// id of landblock to preload
///
public string Id { get; set; }
///
/// description of landblock
///
public string Description { get; set; }
///
/// whether or not this landblock is permaloaded
///
public bool Permaload { get; set; } = false;
///
/// whether or not this landblock should also load adjacents, if Permaload is true, the ajacent landblocks will also be marked permaload
///
public bool IncludeAdjacents { get; set; } = false;
///
/// whether or not this landblock is included for preload.
///
public bool Enabled { get; set; } = false;
}
}