mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
10 lines
216 B
C#
10 lines
216 B
C#
static class Viper
|
|
{
|
|
// define an array of Viper pilot call signs
|
|
public static string[] Callsigns = new[]
|
|
{
|
|
"Husker", "Starbuck", "Apollo", "Boomer",
|
|
"Bulldog", "Athena", "Helo", "Racetrack"
|
|
};
|
|
}
|