Added Flags enum attribute to ConfigFlag and GestureType.
This commit is contained in:
parent
b488a0d1bf
commit
955ea5b886
1 changed files with 2 additions and 0 deletions
|
|
@ -456,6 +456,7 @@ namespace Raylib_cs
|
||||||
|
|
||||||
// System config flags
|
// System config flags
|
||||||
// NOTE: Used for bit masks
|
// NOTE: Used for bit masks
|
||||||
|
[Flags]
|
||||||
public enum ConfigFlag
|
public enum ConfigFlag
|
||||||
{
|
{
|
||||||
FLAG_RESERVED = 1, // Reserved
|
FLAG_RESERVED = 1, // Reserved
|
||||||
|
|
@ -816,6 +817,7 @@ namespace Raylib_cs
|
||||||
|
|
||||||
// Gestures type
|
// Gestures type
|
||||||
// NOTE: It could be used as flags to enable only some gestures
|
// NOTE: It could be used as flags to enable only some gestures
|
||||||
|
[Flags]
|
||||||
public enum GestureType
|
public enum GestureType
|
||||||
{
|
{
|
||||||
GESTURE_NONE = 0,
|
GESTURE_NONE = 0,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue