>the most basic prototype hackey way
InputSystem.actions.FindAction("Move").ReadValue
>still polling, but without creating garbage by finding the action by caching the action
var moveAction = InputSystem.actions.FindAction("Move)
moveAction.ReadValue
>event based, call a function only when the action did something, useful for button type actions
InputSystem.actions.FindAction("Fire").performerd += FireGun