mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 12:51:29 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
8 lines
124 B
C#
8 lines
124 B
C#
namespace SuperStarTrek.Objects
|
|
{
|
|
internal class Star
|
|
{
|
|
public override string ToString() => " * ";
|
|
}
|
|
}
|