mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
17 lines
354 B
C#
17 lines
354 B
C#
using System;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
public class WindowFocusedEventArgs : EventArgs
|
|
{
|
|
public WindowFocusedEventArgs(bool focused, IClydeWindow window)
|
|
{
|
|
Focused = focused;
|
|
Window = window;
|
|
}
|
|
|
|
public bool Focused { get; }
|
|
public IClydeWindow Window { get; }
|
|
}
|
|
}
|