mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
15 lines
337 B
C#
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; }
|
|
}
|
|
}
|