GE Lua Documentation

Press F to search!

CheckboxFlags2

Definition


-- @/lua/common/extensions/ui/imgui_gen_luaintf.lua:356
function M.CheckboxFlags2(string_label, int_flags, int_flags_value)
  if string_label == nil then log("E", "", "Parameter 'string_label' of function 'CheckboxFlags2' cannot be nil, as the c type is 'const char *'") ; return end
  if int_flags == nil then log("E", "", "Parameter 'int_flags' of function 'CheckboxFlags2' cannot be nil, as the c type is 'unsigned int *'") ; return end
  return imgui.CheckboxFlags2(string_label, int_flags, int_flags_value)
end

Callers

@/lua/common/extensions/ui/imgui_gen_luaintf.lua
  if int_flags == nil then log("E", "", "Parameter 'int_flags' of function 'CheckboxFlags2' cannot be nil, as the c type is 'unsigned int *'") ; return end
  return imgui.CheckboxFlags2(string_label, int_flags, int_flags_value)
end