add: Agent Actions

This commit is contained in:
h z
2025-02-12 14:09:56 +00:00
parent f7da4ee8bb
commit 2323211a65
8 changed files with 127 additions and 30 deletions

View File

@@ -1,5 +1,6 @@
using Godot;
using Polonium.Agents;
using Polonium.Interfaces;
using Polonium.Resources;
using Polonium.Scenes;
@@ -18,4 +19,8 @@ public class PoloniumRegistry
DirAccess.MakeDirAbsolute("user://saves");
}
public Dictionary<string, Agent> Agents { get; set; } = new();
public HashSet<ITimeConsumer> TimeConsumers { get; set; } = new();
public bool Paused { get; set; }
}