mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-27 05:03:27 -08:00
22 lines
580 B
C#
22 lines
580 B
C#
namespace BombsAwayGame;
|
|
|
|
/// <summary>
|
|
/// Italy protagonist. Can fly missions to Albania, Greece, and North Africa.
|
|
/// </summary>
|
|
internal class ItalySide : MissionSide
|
|
{
|
|
public ItalySide(IUserInterface ui)
|
|
: base(ui)
|
|
{
|
|
}
|
|
|
|
protected override string ChooseMissionMessage => "YOUR TARGET";
|
|
|
|
protected override IList<Mission> AllMissions => new Mission[]
|
|
{
|
|
new("ALBANIA", "SHOULD BE EASY -- YOU'RE FLYING A NAZI-MADE PLANE."),
|
|
new("GREECE", "BE CAREFUL!!!"),
|
|
new("NORTH AFRICA", "YOU'RE GOING FOR THE OIL, EH?")
|
|
};
|
|
}
|