Skip to content

Commit

Permalink
🐛 i didnt mean to enable that so lets just
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed Aug 25, 2024
1 parent c877dc7 commit a2e41e3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx4G
org.gradle.parallel=true

# Mod Properties
mod_version=1.3.4
mod_version=1.3.5
maven_group=gay.asoji
archives_base_name=innerpastels

Expand Down
24 changes: 13 additions & 11 deletions src/main/kotlin/gay/asoji/innerpastels/client/ImGuiClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,22 @@ object ImGuiClient {
}

fun init() {
panels.addAll( // testing stuff
listOf(
object : ImGuiPanel {
override fun theme() {
if (System.getProperty("EEZNUTSFUCKER")?.toBoolean() == true) {
panels.addAll( // testing stuff
listOf(
object : ImGuiPanel {
override fun theme() {

}
}

override fun render(open_: ImBoolean) {
ImGui.showDemoWindow()
}
},
TestDockSpace, TestPanel
override fun render(open_: ImBoolean) {
ImGui.showDemoWindow()
}
},
TestDockSpace, TestPanel
)
)
)
}

initializeDevKeybinds()

Expand Down

0 comments on commit a2e41e3

Please sign in to comment.