ace/Source/ACE.DatLoader/Entity/BuildInfo.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

17 lines
588 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ACE.Entity;
namespace ACE.DatLoader.Entity
{
public class BuildInfo
{
public uint ModelId { get; set; } // 0x01 or 0x02 model of the building
public Position Frame { get; set; } = new Position(); // specific @loc of the model
public uint NumLeaves { get; set; } // unsure what this is used for
public List<CBldPortal> Portals { get; set; } = new List<CBldPortal>(); // portals are things like doors, windows, etc.
}
}