ImGuiStorage_SetBool function

void ImGuiStorage_SetBool(
  1. Pointer<ImGuiStorage> self,
  2. int key,
  3. int val
)
void ImGuiStorage_SetBool(
 ImGuiStorage* self ,
 uint key ,
 byte val
);

Implementation

void ImGuiStorage_SetBool(Pointer<ImGuiStorage> self, int key, int val) =>
    _ImGuiStorage_SetBool(self, key, val);