UMD.HCIL.Piccolo.Event.PInputEventArgs.PInputEventArgs C# (CSharp) Méthode

PInputEventArgs() public méthode

Constructs a new PInputEventArgs
public PInputEventArgs ( PInputManager inputManager, EventArgs e, PInputType type ) : System
inputManager PInputManager The input manager that dispatched this event.
e System.EventArgs An EventArgs that contains the event data.
type PInputType The type of input event.
Résultat System
		public PInputEventArgs(PInputManager inputManager, EventArgs e, PInputType type) {
			this.inputManager = inputManager;
			this.e = e;
			this.type = type;
		}
		#endregion