From 7b2708f185b815269d8d60a3024b9ab7c624c467 Mon Sep 17 00:00:00 2001 From: EntenKoeniq <81123713+EntenKoeniq@users.noreply.github.com> Date: Wed, 6 Apr 2022 02:21:56 +0200 Subject: [PATCH] removed unused stuff --- Client/Menus/MenusMain.cs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Client/Menus/MenusMain.cs b/Client/Menus/MenusMain.cs index 0248ec8..f612254 100644 --- a/Client/Menus/MenusMain.cs +++ b/Client/Menus/MenusMain.cs @@ -12,31 +12,12 @@ namespace CoopClient.Menus /// public class MenusMain { - class MenuColor : LemonUI.Elements.I2Dimensional - { - public PointF Position { get; set; } - public SizeF Size { get; set; } - public Color Color { get; set; } - - public void Draw() - { - - } - - public void Recalculate() - { - - } - } - internal ObjectPool MenuPool = new ObjectPool(); - // new MenuColor() { Position = new PointF(0, 0), Size = new SizeF(0, 0), Color = Color.FromArgb(0,0,0,0) } internal NativeMenu MainMenu = new NativeMenu("RAGECOOP", "MAIN") { UseMouse = false, Alignment = Main.MainSettings.FlipMenu ? GTA.UI.Alignment.Right : GTA.UI.Alignment.Left - }; #region SUB internal Sub.Settings SubSettings = new Sub.Settings();