13 lines
276 B
C#
13 lines
276 B
C#
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);
|
|
}
|
|
|