mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-27 13:14:15 -08:00
22 lines
644 B
C#
22 lines
644 B
C#
namespace BombsAwayGame;
|
|
|
|
/// <summary>
|
|
/// Germany protagonist. Can fly missions to Russia, England, and France.
|
|
/// </summary>
|
|
internal class GermanySide : MissionSide
|
|
{
|
|
public GermanySide(IUserInterface ui)
|
|
: base(ui)
|
|
{
|
|
}
|
|
|
|
protected override string ChooseMissionMessage => "A NAZI, EH? OH WELL. ARE YOU GOING FOR";
|
|
|
|
protected override IList<Mission> AllMissions => new Mission[]
|
|
{
|
|
new("RUSSIA", "YOU'RE NEARING STALINGRAD."),
|
|
new("ENGLAND", "NEARING LONDON. BE CAREFUL, THEY'VE GOT RADAR."),
|
|
new("FRANCE", "NEARING VERSAILLES. DUCK SOUP. THEY'RE NEARLY DEFENSELESS.")
|
|
};
|
|
}
|