mysimulation/server/tso.common/Rendering/Framework/IO/IFocusableUI.cs

14 lines
221 B
C#
Raw Permalink Normal View History

namespace FSO.Common.Rendering.Framework.IO
{
public interface IFocusableUI
{
void OnFocusChanged(FocusEvent newFocus);
}
public enum FocusEvent
{
FocusIn,
FocusOut
}
}