From 11e32cba2e30a2bf0734eb9a8d3b892b6deb889f Mon Sep 17 00:00:00 2001 From: Hannele Ruiz Date: Sat, 16 Dec 2023 02:55:34 -0300 Subject: [PATCH] Added missing using statements --- LemonUI/Menus/NativeSpacerItem.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/LemonUI/Menus/NativeSpacerItem.cs b/LemonUI/Menus/NativeSpacerItem.cs index f017a4e..2c6b0ca 100644 --- a/LemonUI/Menus/NativeSpacerItem.cs +++ b/LemonUI/Menus/NativeSpacerItem.cs @@ -1,5 +1,11 @@ -using System.Drawing; +#if FIVEM +using CitizenFX.Core.UI; +#elif RAGEMP +using RAGE.Game; +#elif SHVDN3 || SHVDNC using GTA.UI; +#endif +using System.Drawing; namespace LemonUI.Menus {