Exemple #1
0
        static void Main(string[] args)
        {
            Ball ball = new Ball();
            Pitcher pitcher = new Pitcher(ball);

            BallEventArgs ballEventArgs = new BallEventArgs(59, 94);

            ball.OnBallInPlay(ballEventArgs);
        }
Exemple #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello world!");

            Ball ball = new Ball();

            Pitcher pitcher = new Pitcher(ball);

            ball.playBall_Click();
        }