_20.Events.JumpballEvent.JumpballEvent C# (CSharp) Method

JumpballEvent() public method

public JumpballEvent ( Alpaca pac, string homePlayerId, string awayPlayerId, string winner, Point location ) : System
pac Alpaca
homePlayerId string
awayPlayerId string
winner string
location Point
return System
        public JumpballEvent(Alpaca pac, string homePlayerId, string awayPlayerId, string winner, Point location)
            : base(pac)
        {
            this.homePlayerId = homePlayerId;
            this.awayPlayerId = awayPlayerId;
            this.winner = winner;
            this.location = location;
            apiCall = "jumpBall";
        }