Files
RobustToolbox/Robust.Client/Graphics/WindowDestroyedEventArgs.cs
T

15 lines
276 B
C#

using System;
namespace Robust.Client.Graphics
{
public class WindowDestroyedEventArgs : EventArgs
{
public IClydeWindow Window { get; }
public WindowDestroyedEventArgs(IClydeWindow window)
{
Window = window;
}
}
}