Files
RobustToolbox/Robust.Client/Graphics/WindowFocusedEventArgs.cs
Pieter-Jan Briers 033e20cbf1 Add Closed (past tense) event to OSWindow.
Change a bunch of window event stuff up.
2021-08-24 04:49:04 +02:00

15 lines
337 B
C#

namespace Robust.Client.Graphics
{
public readonly struct WindowFocusedEventArgs
{
public WindowFocusedEventArgs(bool focused, IClydeWindow window)
{
Focused = focused;
Window = window;
}
public bool Focused { get; }
public IClydeWindow Window { get; }
}
}