From e9a63ae9f6be517b93c01d2e5729a77f43dbb91f Mon Sep 17 00:00:00 2001 From: SerpentSpirale Date: Fri, 30 Apr 2021 11:53:32 +0200 Subject: [PATCH] Add ControlDrawer in CustomControls --- .../kdt/pojavlaunch/customcontrols/CustomControls.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/customcontrols/CustomControls.java b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/customcontrols/CustomControls.java index 00bf24007..1e99f252e 100644 --- a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/customcontrols/CustomControls.java +++ b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/customcontrols/CustomControls.java @@ -9,12 +9,16 @@ public class CustomControls { public float scaledAt; public List mControlDataList; + public List mDrawerDataList; public CustomControls() { - this(new ArrayList()); + this(new ArrayList(), new ArrayList()); } - - public CustomControls(List mControlDataList) { + + + + public CustomControls(List mControlDataList, List mDrawerDataList) { this.mControlDataList = mControlDataList; + this.mDrawerDataList = mDrawerDataList; this.scaledAt = 100f; }