Files
RobustToolbox/Robust.Client/Graphics/WindowDestroyedEventArgs.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

13 lines
259 B
C#

namespace Robust.Client.Graphics
{
public readonly struct WindowDestroyedEventArgs
{
public IClydeWindow Window { get; }
public WindowDestroyedEventArgs(IClydeWindow window)
{
Window = window;
}
}
}