mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 23:02:34 +02:00
15 lines
289 B
C#
15 lines
289 B
C#
using System;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
public sealed class WindowContentScaleEventArgs : EventArgs
|
|
{
|
|
public WindowContentScaleEventArgs(IClydeWindow window)
|
|
{
|
|
Window = window;
|
|
}
|
|
|
|
public IClydeWindow Window { get; }
|
|
}
|
|
}
|