mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 20:34:32 -08:00
18 lines
288 B
C#
18 lines
288 B
C#
namespace Salvo.Ships;
|
|
|
|
internal sealed class Cruiser : Ship
|
|
{
|
|
internal Cruiser(IReadWrite io)
|
|
: base(io)
|
|
{
|
|
}
|
|
|
|
internal Cruiser(IRandom random)
|
|
: base(random)
|
|
{
|
|
}
|
|
|
|
internal override int Shots => 2;
|
|
internal override int Size => 3;
|
|
}
|