igCheckbox() 개인적인 메소드

private igCheckbox ( string label, bool &v ) : bool
label string
v bool
리턴 bool
예제 #1
0
 public static unsafe bool Checkbox(string label, ref bool value)
 {
     fixed(byte *bytes = System.Text.Encoding.UTF8.GetBytes(label))
     {
         return(ImGuiNative.igCheckbox(bytes, ref value));
     }
 }
예제 #2
0
 public static bool Checkbox(string label, ref bool value)
 {
     return(ImGuiNative.igCheckbox(label, ref value));
 }
예제 #3
0
파일: ImGui.cs 프로젝트: se5a/ImGuiCS
 public static bool Checkbox(string label, ref bool value)
 => ImGuiNative.igCheckbox(label, ref value);