11 lines
108 B
C#
11 lines
108 B
C#
using System;
|
|
|
|
namespace WorldOfPeacecraft
|
|
{
|
|
public enum Decision
|
|
{
|
|
DRAGON, STAGHUNT, SKIRMISH
|
|
}
|
|
}
|
|
|