mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 07:29:02 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
35 lines
668 B
C#
35 lines
668 B
C#
using System.ComponentModel;
|
|
|
|
namespace SuperStarTrek.Commands
|
|
{
|
|
internal enum Command
|
|
{
|
|
[Description("To set course")]
|
|
NAV,
|
|
|
|
[Description("For short range sensor scan")]
|
|
SRS,
|
|
|
|
[Description("For long range sensor scan")]
|
|
LRS,
|
|
|
|
[Description("To fire phasers")]
|
|
PHA,
|
|
|
|
[Description("To fire photon torpedoes")]
|
|
TOR,
|
|
|
|
[Description("To raise or lower shields")]
|
|
SHE,
|
|
|
|
[Description("For damage control reports")]
|
|
DAM,
|
|
|
|
[Description("To call on library-computer")]
|
|
COM,
|
|
|
|
[Description("To resign your command")]
|
|
XXX
|
|
}
|
|
}
|