Photon Editor Library 2.0.0-beta
A physically based renderer.
Loading...
Searching...
No Matches
EMouseCode.h
Go to the documentation of this file.
1#pragma once
2
3#include <Common/primitive_type.h>
4
5namespace ph::editor
6{
7
8enum class EMouseCode : uint8
9{
10 // Unknow/unsupported mouse button
11 Unknown = 0,
12
13 // Common mouse buttons
14 Left = 1,
15 Right = 2,
16 Middle = 3,
17
18 // Number of values
19 Num,
20};// end EMouseCode
21
22}// end namespace ph::editor
Definition ph_editor.h:10
EMouseCode
Definition EMouseCode.h:9