InputState.h 298 B

12345678910
  1. // Copyright 2019 Google LLC.
  2. // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
  3. #ifndef InputState_DEFINED
  4. #define InputState_DEFINED
  5. enum class InputState {
  6. kDown,
  7. kUp,
  8. kMove // only valid for mouse
  9. };
  10. #endif // InputState_DEFINED