18 lines
314 B
C#
18 lines
314 B
C#
|
namespace MultiversalDiplomacy.Model;
|
||
|
|
||
|
/// <summary>
|
||
|
/// One of the rival nations vying for control of the map.
|
||
|
/// </summary>
|
||
|
public class Power
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The power's name.
|
||
|
/// </summary>
|
||
|
public string Name { get; }
|
||
|
|
||
|
public Power(string name)
|
||
|
{
|
||
|
this.Name = name;
|
||
|
}
|
||
|
}
|