-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
show in debug by default, skyhanni compat, fix icon
- Loading branch information
Showing
29 changed files
with
239 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package at.hannibal2.skyhanni; | ||
|
||
import at.hannibal2.skyhanni.config.Features; | ||
|
||
public class SkyHanniMod { | ||
public static Features feature = new Features(); | ||
public static Features getFeature() { | ||
return feature; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package at.hannibal2.skyhanni.config; | ||
|
||
import at.hannibal2.skyhanni.config.features.gui.GUIConfig; | ||
|
||
public class Features { | ||
public GUIConfig gui = new GUIConfig(); | ||
} |
7 changes: 7 additions & 0 deletions
7
src/dummy/java/at/hannibal2/skyhanni/config/features/gui/GUIConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package at.hannibal2.skyhanni.config.features.gui; | ||
|
||
import at.hannibal2.skyhanni.config.features.misc.compacttablist.CompactTabListConfig; | ||
|
||
public class GUIConfig { | ||
public CompactTabListConfig compactTabList = new CompactTabListConfig(); | ||
} |
7 changes: 7 additions & 0 deletions
7
.../java/at/hannibal2/skyhanni/config/features/misc/compacttablist/CompactTabListConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package at.hannibal2.skyhanni.config.features.misc.compacttablist; | ||
|
||
import at.hannibal2.skyhanni.deps.moulconfig.observer.Property; | ||
|
||
public class CompactTabListConfig { | ||
public Property<Boolean> enabled = Property.of(false); | ||
} |
18 changes: 18 additions & 0 deletions
18
src/dummy/java/at/hannibal2/skyhanni/deps/moulconfig/observer/GetSetter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package at.hannibal2.skyhanni.deps.moulconfig.observer; | ||
|
||
import java.util.function.Consumer; | ||
import java.util.function.Supplier; | ||
|
||
public interface GetSetter<T> | ||
extends Supplier<T>, | ||
Consumer<T> { | ||
@Override | ||
public T get(); | ||
|
||
public void set(T var1); | ||
|
||
@Override | ||
default public void accept(T t) { | ||
this.set(t); | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/dummy/java/at/hannibal2/skyhanni/deps/moulconfig/observer/Property.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package at.hannibal2.skyhanni.deps.moulconfig.observer; | ||
|
||
public abstract class Property<T> | ||
implements GetSetter<T> { | ||
public static <T> Property<T> of(T value) { | ||
return new Property<T>() { | ||
private T value; | ||
|
||
@Override | ||
public T get() { | ||
return this.value; | ||
} | ||
|
||
@Override | ||
public void set(T value) { | ||
this.value = value; | ||
} | ||
}; | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
src/dummy/java/at/hannibal2/skyhanni/features/misc/compacttablist/RenderColumn.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package at.hannibal2.skyhanni.features.misc.compacttablist; | ||
|
||
public class RenderColumn { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/dummy/java/at/hannibal2/skyhanni/features/misc/compacttablist/TabListReader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package at.hannibal2.skyhanni.features.misc.compacttablist; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class TabListReader { | ||
public static final TabListReader INSTANCE = new TabListReader(); | ||
|
||
public final List<RenderColumn> getRenderColumns() { | ||
return new ArrayList<>(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package at.hannibal2.skyhanni.utils; | ||
|
||
public class LorenzUtils { | ||
public static final LorenzUtils INSTANCE = new LorenzUtils(); | ||
|
||
public final boolean getInSkyBlock() { | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.