blob: cd4f2db794c6abd1bd71be99dca7f6e12227b9fd [file] [log] [blame]
Hal Canaryff2e8fe2019-07-16 09:58:43 -04001// 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.
Hal Canaryb1f411a2019-08-29 10:39:22 -04003#ifndef skui_inputstate_DEFINED
4#define skui_inputstate_DEFINED
5namespace skui {
Hal Canaryff2e8fe2019-07-16 09:58:43 -04006enum class InputState {
7 kDown,
8 kUp,
Jim Van Verthd0cf5da2019-09-09 16:53:39 -04009 kMove, // only valid for mouse
10 kRight, // only valid for fling
11 kLeft, // only valid for fling
Hal Canaryff2e8fe2019-07-16 09:58:43 -040012};
John Stilesa6841be2020-08-06 14:11:56 -040013} // namespace skui
Hal Canaryb1f411a2019-08-29 10:39:22 -040014#endif // skui_inputstate_DEFINED