Simplify Combat (C#) folder structure

This commit is contained in:
Zev Spitz
2022-01-17 09:12:50 +02:00
parent 827f2b0cb3
commit 66d4c9b8af
12 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
namespace Game
{
/// <summary>
/// Enumerates the possible outcomes of the war.
/// </summary>
public enum WarResult
{
ComputerVictory,
PlayerVictory,
PeaceTreaty
}
}