public BaseballSimulator()
 {
     pitcher = new Pitcher(ball);
     fan = new Fan(ball);
 }
 public BaseballSimulator()
 {
     pitcher = new Pitcher(ball);
     fan     = new Fan(ball);
 }
예제 #3
0
파일: Form1.cs 프로젝트: nohe427/HeadFirst
 public Form1()
 {
     InitializeComponent();
     pitcher = new Pitcher(ball);
     fan     = new Fan(ball);
 }
예제 #4
0
 public Form1()
 {
     InitializeComponent();
     pitcher = new Pitcher(ball);
     fan = new Fan(ball);
 }