2022-02-18 20:13:23 +00:00
|
|
|
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;
|
|
|
|
}
|
2022-03-16 00:36:47 +00:00
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
return this.Name;
|
|
|
|
}
|
2022-02-18 20:13:23 +00:00
|
|
|
}
|