ace/Source/ACE.Server/Entity/Events/SpellCastArgs.cs
Galli ecd6ce2b43
Remove UTF-8 BOMs across repository (#4324)
* remove bom from source files

* Remove stray BOM cleanup comments
2025-06-22 15:33:36 -04:00

21 lines
561 B
C#

using System;
using ACE.Entity;
namespace ACE.Server.Entity.Events
{
/// <summary>
/// this may or may not end up being used. a spell casting is really a combination of animation, sound, and effects
/// </summary>
public class SpellCastArgs : EventArgs
{
/// <summary>
/// TODO: replace with Spell enumeration type
/// </summary>
public uint SpellId { get; set; }
/// <summary>
/// id of the target of the spell
/// </summary>
public ObjectGuid Target { get; set; }
}
}