Cult spells update (#607)

* - add: CultSystem.BloodSpells.

* - add: Cleanup.
This commit is contained in:
Aviu00
2024-08-11 10:55:01 +00:00
committed by GitHub
parent 00a58cf850
commit e14b6cb948
26 changed files with 290 additions and 72 deletions

View File

@@ -0,0 +1,22 @@
using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared._White.Cult.UI;
public enum BloodSpellMessageState : byte
{
Create,
Remove,
Cancel
}
[Serializable, NetSerializable]
public sealed class BloodSpellMessage : EuiMessageBase
{
public readonly BloodSpellMessageState State;
public BloodSpellMessage(BloodSpellMessageState state)
{
State = state;
}
}