mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-08 11:24:49 -08:00
15 lines
262 B
C#
15 lines
262 B
C#
namespace SuperStarTrek.Objects
|
|
{
|
|
internal class Klingon
|
|
{
|
|
private double _energy;
|
|
|
|
public Klingon()
|
|
{
|
|
_energy = new Random().GetDouble(100, 300);
|
|
}
|
|
|
|
public override string ToString() => "+K+";
|
|
}
|
|
}
|