aboutsummaryrefslogtreecommitdiff
path: root/V3/AI/IWorldView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/AI/IWorldView.cs')
-rw-r--r--V3/AI/IWorldView.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/V3/AI/IWorldView.cs b/V3/AI/IWorldView.cs
new file mode 100644
index 0000000..b47322f
--- /dev/null
+++ b/V3/AI/IWorldView.cs
@@ -0,0 +1,21 @@
+using System.Collections.Generic;
+using V3.Objects;
+
+namespace V3.AI
+{
+ /// <summary>
+ /// Stores the knowledge of the computer player about the game world, and
+ /// is used for the evaluation of the strategy. It is also used to decide
+ /// which actions to take based on the current state.
+ /// </summary>
+ public interface IWorldView
+ {
+ int EnemyCount { get; set; }
+ int InitialPlebsCount { get; set; }
+ int PlebsCount { get; set; }
+ float NecromancerHealth { get; set; }
+ List<ICreature> IdlingKnights { get; }
+ List<ICreature> Targets { get; }
+ List<ICreature> Plebs { get; }
+ }
+}