mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
13 lines
206 B
C#
13 lines
206 B
C#
namespace Game
|
|
{
|
|
/// <summary>
|
|
/// Enumerates the different branches of the military.
|
|
/// </summary>
|
|
public enum MilitaryBranch
|
|
{
|
|
Army,
|
|
Navy,
|
|
AirForce
|
|
}
|
|
}
|