add: Item Manager

This commit is contained in:
h z
2025-02-28 08:49:32 +00:00
parent e90f701bd5
commit d2f0ab8153
21 changed files with 648 additions and 24 deletions

View File

@@ -1,8 +1,12 @@
using Godot;
using Polonium.Resources;
namespace Polonium.Agents;
public abstract partial class Knowledge : Node
{
}
[Signal]
public delegate void KnowledgeUpdatedEventHandler(KnowledgePatch update);
public abstract void UpdateKnowledge(KnowledgePatch update);
}