From ced3d03bdb3ce866d832e03fb212865140905a9a Mon Sep 17 00:00:00 2001 From: Thomas Leyh Date: Sun, 24 Jul 2016 08:14:18 +0200 Subject: Add project files. --- V3/AI/IWorldView.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 V3/AI/IWorldView.cs (limited to 'V3/AI/IWorldView.cs') 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 +{ + /// + /// 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. + /// + public interface IWorldView + { + int EnemyCount { get; set; } + int InitialPlebsCount { get; set; } + int PlebsCount { get; set; } + float NecromancerHealth { get; set; } + List IdlingKnights { get; } + List Targets { get; } + List Plebs { get; } + } +} -- cgit v1.2.1