mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 04:41:52 -08:00
7 lines
106 B
C#
7 lines
106 B
C#
namespace SuperStarTrek.Objects;
|
|
|
|
internal class Star
|
|
{
|
|
public override string ToString() => " * ";
|
|
}
|