start of settings, slightly broken
This commit is contained in:
parent
411790540a
commit
0ebc2f3512
10 changed files with 206 additions and 8 deletions
|
@ -0,0 +1,18 @@
|
|||
package me.kawaiizenbo.moonlight.module.modules;
|
||||
|
||||
import me.kawaiizenbo.moonlight.module.Category;
|
||||
import me.kawaiizenbo.moonlight.module.Module_;
|
||||
import me.kawaiizenbo.moonlight.module.settings.DoubleSetting;
|
||||
|
||||
public class TestDisplay extends Module_
|
||||
{
|
||||
DoubleSetting test1 = new DoubleSetting("test1", 1, 0, 20, 1);
|
||||
DoubleSetting test2 = new DoubleSetting("test2", 0, 0, 1, 0.1);
|
||||
|
||||
public TestDisplay()
|
||||
{
|
||||
super("TestDisplay", "Test of settings window", Category.RENDER);
|
||||
this.settings.add(test1);
|
||||
this.settings.add(test2);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue