A game framework written with osu! in mind.
at master 16 lines 530 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4namespace osu.Framework.Graphics.Sprites 5{ 6 /// <summary> 7 /// Objects implementing this interface have a line base height when used in a CustomizableTextContainer. 8 /// </summary> 9 public interface IHasLineBaseHeight 10 { 11 /// <summary> 12 /// The line base height this object has. 13 /// </summary> 14 float LineBaseHeight { get; } 15 } 16}