igPushFont() 개인적인 메소드

private igPushFont ( NativeFont font ) : void
font NativeFont
리턴 void
예제 #1
0
 public static unsafe void PushFont(Font font)
 {
     ImGuiNative.igPushFont(font.NativeFont);
 }
예제 #2
0
파일: ImGui.cs 프로젝트: se5a/ImGuiCS
 public static unsafe void PushFont(ImFont font)
 => ImGuiNative.igPushFont(font.Native);