CSPspEmu.Hle.Formats.Font.PGF._GetGlyph C# (CSharp) Method

_GetGlyph() protected method

protected _GetGlyph ( int Index ) : IGlyph
Index int
return IGlyph
        protected IGlyph _GetGlyph(int Index)
        {
            if (Glyphs[Index] == null) {
                Glyphs[Index] = new Glyph(this, Index);
            }
            return Glyphs[Index];
        }