mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
15 lines
276 B
C#
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;
|
|
}
|
|
}
|
|
}
|