work on sim bot

This commit is contained in:
Boki 2026-04-04 16:44:32 -04:00
parent 8ca257bc79
commit f09ee5d106
29 changed files with 889 additions and 60 deletions

View file

@ -27,6 +27,8 @@ public class GameState
/// <summary>In-progress quests from the quest linked list with target areas and paths.</summary>
public IReadOnlyList<QuestInfo> Quests { get; set; } = [];
public IReadOnlyList<ProjectileSnapshot> EnemyProjectiles { get; set; } = [];
// Derived (computed once per tick by GameStateEnricher / ThreatSystem)
public ThreatMap Threats { get; set; } = new();
public ThreatAssessment ThreatAssessment { get; set; } = new();