blob: d51b96d74e845e9e1b748402a23e25fbcfdee6e0 [file] [log] [blame]
Lingfeng Yang18d9a2b2020-10-30 13:03:27 -07001//
2// Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
7#ifndef SAMPLE_UTIL_MOUSE_H
8#define SAMPLE_UTIL_MOUSE_H
9
10enum MouseButton
11{
12 MOUSEBUTTON_UNKNOWN,
13 MOUSEBUTTON_LEFT,
14 MOUSEBUTTON_RIGHT,
15 MOUSEBUTTON_MIDDLE,
16 MOUSEBUTTON_BUTTON4,
17 MOUSEBUTTON_BUTTON5,
18 MOUSEBUTTON_COUNT,
19};
20
21#endif // SAMPLE_UTIL_MOUSE_H