示例#1
0
        public ImFontGlyphPtr FindGlyph(ushort c)
        {
            ImFontGlyph *ret = ImGuiNative.ImFont_FindGlyph(NativePtr, c);

            return(new ImFontGlyphPtr(ret));
        }
示例#2
0
 public ImFontGlyphPtr(ImFontGlyph *nativePtr) => NativePtr = nativePtr;
示例#3
0
 public ImFontGlyphPtr(IntPtr nativePtr)
 {
     NativePtr = (ImFontGlyph *)nativePtr;
 }