mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 10:07:15 +02:00
13 lines
259 B
C#
13 lines
259 B
C#
namespace Robust.Client.Graphics
|
|
{
|
|
public readonly struct WindowDestroyedEventArgs
|
|
{
|
|
public IClydeWindow Window { get; }
|
|
|
|
public WindowDestroyedEventArgs(IClydeWindow window)
|
|
{
|
|
Window = window;
|
|
}
|
|
}
|
|
}
|