mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
34 lines
582 B
C#
34 lines
582 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
|
|
}
|