Exemple #1
0
 public void Dispose()
 {
     if (nativePtr != null)
     {
         ImGuiNative.ImGuiListClipper_destroy(nativePtr);
         nativePtr = null;
     }
 }
Exemple #2
0
 public ImGuiListClipper(int items_count = -1, float items_height = -1.0f)
 {
     nativePtr = ImGuiNative.ImGuiListClipper_ImGuiListClipper(items_count, items_height);
 }