TTF_FontLineSkip() 개인적인 메소드

private TTF_FontLineSkip ( IntPtr font ) : int
font System.IntPtr
리턴 int
예제 #1
0
        public void FontLineSkip()
        {
            this.Quit();
            this.Init();
            IntPtr fontPtr = SdlTtf.TTF_OpenFont("../../FreeSans.ttf", 10);

            Assert.AreEqual(17, SdlTtf.TTF_FontLineSkip(fontPtr));
            //Console.WriteLine("FontLineSkip:" + SdlTtf.TTF_FontLineSkip(fontPtr).ToString());
            this.Quit();
        }