TTF_FontLineSkip() private method

private TTF_FontLineSkip ( IntPtr font ) : int
font System.IntPtr
return int
Exemplo n.º 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();
        }