11 lines
317 B
C#
11 lines
317 B
C#
namespace AcDream.Plugin.Abstractions;
|
|
|
|
/// <summary>One authoritative completion of a spell request.</summary>
|
|
public readonly record struct PluginCastCompletion(
|
|
long Revision,
|
|
uint SpellId,
|
|
uint TargetObjectId,
|
|
uint WeenieError)
|
|
{
|
|
public bool IsSuccess => Revision != 0 && WeenieError == 0u;
|
|
}
|