Files
RobustToolbox/Robust.Client/Graphics/WindowContentScaleEventArgs.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
265 B
C#

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