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

20 lines
550 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ACE.DatLoader.Entity
{
public class SpellComponentBase
{
public string Name { get; set; }
public uint Category { get; set; }
public uint Icon { get; set; }
public uint Type { get; set; }
public uint Gesture { get; set; }
public float Time { get; set; }
public string Text { get; set; }
public float CDM { get; set; } // Unsure what this is
}
}