static void Main(string[] args) { Ball ball = new Ball(); Pitcher pitcher = new Pitcher(ball); BallEventArgs ballEventArgs = new BallEventArgs(59, 94); ball.OnBallInPlay(ballEventArgs); }
static void Main(string[] args) { Console.WriteLine("Hello world!"); Ball ball = new Ball(); Pitcher pitcher = new Pitcher(ball); ball.playBall_Click(); }