Advertisement
Dennisaa

BallHitEventArgs.cs - BallGame

Sep 19th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication2 {
  4.     public class BallHitEventArgs : EventArgs {
  5.  
  6.         public int Mph { get; private set; }
  7.         public int CompassDirection { get; private set; }
  8.  
  9.         public BallHitEventArgs(int mph, int compassDirection) {
  10.             Mph = mph;
  11.             CompassDirection = compassDirection;
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement