mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
13 lines
265 B
C#
13 lines
265 B
C#
namespace Robust.Client.Graphics
|
|
{
|
|
public readonly struct WindowContentScaleEventArgs
|
|
{
|
|
public WindowContentScaleEventArgs(IClydeWindow window)
|
|
{
|
|
Window = window;
|
|
}
|
|
|
|
public IClydeWindow Window { get; }
|
|
}
|
|
}
|