ace/Source/ACE.DatLoader/Entity/RestrictionTable.cs
OptimShi 46b5baec30 Re-added SpellTable, CLandblockInfo and fixed some StyleCop issues. (#387)
* 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.
2017-06-17 18:23:31 -04:00

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
}
}