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.
17 lines
588 B
C#
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.
|
|
}
|
|
}
|