From 955ea5b8868a589286811eef231223d417aab7bb Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sun, 3 May 2020 15:26:53 +0100 Subject: [PATCH] Added Flags enum attribute to ConfigFlag and GestureType. --- Raylib-cs/Raylib.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index a8456d7..180c0b3 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -456,6 +456,7 @@ namespace Raylib_cs // System config flags // NOTE: Used for bit masks + [Flags] public enum ConfigFlag { FLAG_RESERVED = 1, // Reserved @@ -816,6 +817,7 @@ namespace Raylib_cs // Gestures type // NOTE: It could be used as flags to enable only some gestures + [Flags] public enum GestureType { GESTURE_NONE = 0,