mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-16 08:05:34 -04:00
Add ControlDrawer in CustomControls
This commit is contained in:
parent
430392deac
commit
e9a63ae9f6
@ -9,12 +9,16 @@ public class CustomControls
|
||||
{
|
||||
public float scaledAt;
|
||||
public List<ControlData> mControlDataList;
|
||||
public List<ControlDrawerData> mDrawerDataList;
|
||||
public CustomControls() {
|
||||
this(new ArrayList<ControlData>());
|
||||
this(new ArrayList<ControlData>(), new ArrayList<ControlDrawerData>());
|
||||
}
|
||||
|
||||
public CustomControls(List<ControlData> mControlDataList) {
|
||||
|
||||
|
||||
|
||||
public CustomControls(List<ControlData> mControlDataList, List<ControlDrawerData> mDrawerDataList) {
|
||||
this.mControlDataList = mControlDataList;
|
||||
this.mDrawerDataList = mDrawerDataList;
|
||||
this.scaledAt = 100f;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user