draft options working; spells won't cast though

This commit is contained in:
Ian Woods 2026-07-14 20:56:50 -07:00
parent 2429efbf6a
commit 7cf15dcaa6
37 changed files with 1340 additions and 0 deletions

View file

@ -0,0 +1,15 @@
namespace TD.Core
{
/// <summary>
/// Identifies which builder spell a
/// <see cref="TD.Gameplay.BuilderSpells.BuilderSpellDefinition"/> represents. Mirrors
/// <see cref="BuilderEffectKind"/> — a stable, enum-indexed identifier used by
/// <see cref="TD.Gameplay.BuilderSpells.BuilderSpellPool"/> and
/// <see cref="TD.Gameplay.SpellSlot"/> instead of an asset reference.
/// </summary>
public enum BuilderSpellKind : byte
{
Fireball = 0,
SlowArea = 1,
}
}