mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 01:12:24 +00:00
14 lines
221 B
C#
14 lines
221 B
C#
|
namespace FSO.Common.Rendering.Framework.IO
|
|||
|
{
|
|||
|
public interface IFocusableUI
|
|||
|
{
|
|||
|
void OnFocusChanged(FocusEvent newFocus);
|
|||
|
}
|
|||
|
|
|||
|
public enum FocusEvent
|
|||
|
{
|
|||
|
FocusIn,
|
|||
|
FocusOut
|
|||
|
}
|
|||
|
}
|