예제 #1
0
파일: IO.cs 프로젝트: user135711/ImGui.NET
 internal IO(NativeIO *nativePtr)
 {
     _nativePtr = nativePtr;
     MouseDown  = new MouseDownStates(nativePtr);
     KeyMap     = new KeyMap(_nativePtr);
     KeysDown   = new KeyDownStates(_nativePtr);
     FontAtlas  = new FontAtlas(_nativePtr->FontAtlas);
 }
예제 #2
0
파일: IO.cs 프로젝트: mellinoe/ImGui.NET
 internal IO(NativeIO* nativePtr)
 {
     _nativePtr = nativePtr;
     MouseDown = new MouseDownStates(nativePtr);
     KeyMap = new KeyMap(_nativePtr);
     KeysDown = new KeyDownStates(_nativePtr);
     FontAtlas = new FontAtlas(_nativePtr->FontAtlas);
 }
예제 #3
0
파일: IO.cs 프로젝트: user135711/ImGui.NET
 public KeyDownStates(NativeIO *nativePtr)
 {
     _nativePtr = nativePtr;
 }
예제 #4
0
파일: IO.cs 프로젝트: user135711/ImGui.NET
 public MouseDownStates(NativeIO *nativePtr)
 {
     _nativePtr = nativePtr;
 }
예제 #5
0
파일: IO.cs 프로젝트: user135711/ImGui.NET
 public KeyMap(NativeIO *nativePtr)
 {
     _nativePtr = nativePtr;
 }
예제 #6
0
        public static unsafe void LoadDefaultFont()
        {
            NativeIO *ioPtr = ImGuiNative.igGetIO();

            ImGuiNative.ImFontAtlas_AddFontDefault(ioPtr->FontAtlas);
        }
예제 #7
0
파일: IO.cs 프로젝트: mellinoe/ImGui.NET
 public KeyDownStates(NativeIO* nativePtr)
 {
     _nativePtr = nativePtr;
 }
예제 #8
0
파일: IO.cs 프로젝트: mellinoe/ImGui.NET
 public MouseDownStates(NativeIO* nativePtr)
 {
     _nativePtr = nativePtr;
 }
예제 #9
0
파일: IO.cs 프로젝트: mellinoe/ImGui.NET
 public KeyMap(NativeIO* nativePtr)
 {
     _nativePtr = nativePtr;
 }