예제 #1
0
파일: Font.cs 프로젝트: yvt/ngspades
 public unsafe Font(Span <byte> bytes)
 {
     fixed(byte *ptr = &bytes[0])
     {
         nativeObject = EngineInstance.NativeEngine.FontFactory
                        .CreateFont((IntPtr)ptr, bytes.Length);
     }
 }
예제 #2
0
파일: Font.cs 프로젝트: yvt/ngspades
 internal Font(INgsPFFont nativeObject)
 {
     this.nativeObject = nativeObject;
 }