mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
19 lines
460 B
C#
19 lines
460 B
C#
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
public readonly struct WindowResizedEventArgs
|
|
{
|
|
public WindowResizedEventArgs(Vector2i oldSize, Vector2i newSize, IClydeWindow window)
|
|
{
|
|
OldSize = oldSize;
|
|
NewSize = newSize;
|
|
Window = window;
|
|
}
|
|
|
|
public Vector2i OldSize { get; }
|
|
public Vector2i NewSize { get; }
|
|
public IClydeWindow Window { get; }
|
|
}
|
|
}
|