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.
20 lines
550 B
C#
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
|
|
}
|
|
}
|