Basic sigil system implementation

This commit is contained in:
2026-05-02 00:35:49 -07:00
parent 9e7678ce2a
commit 4460fd28f5
13 changed files with 215 additions and 45 deletions

View File

@@ -0,0 +1,8 @@
namespace Zennysoft.Ma;
public interface ISigilComponent
{
ISigil Sigil { get; set; }
public void Reset();
}