18 lines
317 B
C#
18 lines
317 B
C#
|
namespace MultiversalDiplomacy.Model;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The type of a location in a province.
|
||
|
/// </summary>
|
||
|
public enum LocationType
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// An army-accessible location.
|
||
|
/// </summary>
|
||
|
Land = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// A fleet-accessible location.
|
||
|
/// </summary>
|
||
|
Water = 1,
|
||
|
}
|