using System; namespace Framework.Input.States { /// Stores the state of a digitally interpreted input public struct Trigger { /// Whether the trigger is being held down public bool IsActive; /// Whether the trigger has been pressed in the current frame public bool WasTriggered; } } // namespace Framework.Input.States