package MissileCommand;




public class AffiliationWin extends GP.Containers.Window {


  private CommieCapPanel _ccp;
  private GP.Graphics.Text _msg1, _msg2, _msg3;

  public AffiliationWin(Holder holder) {
    super("Welcome to Missile Command!");
    this.Show();

    String text1 = "As an added bonus, in Missile Command you're able to choose political affiliation!";
    String text2 = "To be the blood-thirsty communists, or the money-grubbing capitalists,";
    String text3 = "click the appropriate button.";
    _msg1=new GP.Graphics.Text(this, text1);
    _msg2=new GP.Graphics.Text(this, text2);
    _msg3=new GP.Graphics.Text(this, text3);

    _ccp=new CommieCapPanel(this, holder);

    this.SetGeometryManager(new GP.Behaviors.GeometryManagers.Column());

  }




}
