Flood.GUI.GlyphManager.GetKerning C# (CSharp) Method

GetKerning() public method

public GetKerning ( Font font, int c1, int c2 ) : System.Vector2
font Font
c1 int
c2 int
return System.Vector2
        public Vector2 GetKerning(Font font, int c1, int c2)
        {
            var nativeFont = font.EngineFont.Resolve();

            return nativeFont.GetKerning(c1, c2, font.Size);
        }