mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Re-added SpellTable, CLandblockInfo and fixed some StyleCop issues. * Fixed PaletteSet cache filed loading update * Fixed a pair of no-new-line at end-of-file issues.
11 lines
398 B
C#
11 lines
398 B
C#
namespace ACE.DatLoader.Entity
|
|
{
|
|
/// <summary>
|
|
/// Defines how access is controlled to a restricted landblock (e.g. a housing barrier)
|
|
/// </summary>
|
|
public class RestrictionTable
|
|
{
|
|
public uint Landblock { get; set; } // The landblock that is restricted
|
|
public uint Iid { get; set; } // the guid of the world object that controls access to this block
|
|
}
|
|
}
|