We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bfa1b6 commit dce574eCopy full SHA for dce574e
imgui-binding/src/main/java/imgui/ImGui.java
@@ -104,7 +104,7 @@ private static String tryLoadFromClasspath(final String fullLibName) {
104
* Method is used to initiate static instantiation (loading of the native libraries etc.).
105
* Otherwise native libraries will be loaded on demand and natively mapped objects won't work.
106
*/
107
- public static void touch() {
+ public static void init() {
108
}
109
110
private ImGui() {
imgui-binding/src/main/java/imgui/binding/ImGuiStruct.java
@@ -12,7 +12,7 @@ public abstract class ImGuiStruct {
12
public long ptr;
13
14
public ImGuiStruct(final long ptr) {
15
- ImGui.touch();
+ ImGui.init();
16
this.ptr = ptr;
17
18
0 commit comments