mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-08 11:24:49 -08:00
8 lines
128 B
C#
8 lines
128 B
C#
namespace SuperStarTrek.Objects
|
|
{
|
|
internal class Starbase
|
|
{
|
|
public override string ToString() => ">!<";
|
|
}
|
|
}
|