Cleanup pt 2

This commit is contained in:
2024-09-14 10:35:23 -07:00
parent 57b9d9b64a
commit 5f05494fe1
11 changed files with 5 additions and 46 deletions

View File

@@ -0,0 +1,11 @@
using Chickensoft.Introspection;
using Chickensoft.LogicBlocks;
namespace GameJamDungeon
{
public partial class DungeonRoomLogic
{
[Meta]
public abstract partial record State : StateLogic<State>;
}
}