mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
17 lines
392 B
C#
17 lines
392 B
C#
using System;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.Interfaces.Graphics
|
|
{
|
|
public class WindowResizedEventArgs : EventArgs
|
|
{
|
|
public WindowResizedEventArgs(Vector2i oldSize, Vector2i newSize)
|
|
{
|
|
OldSize = oldSize;
|
|
NewSize = newSize;
|
|
}
|
|
|
|
public Vector2i OldSize { get; }
|
|
public Vector2i NewSize { get; }
|
|
}
|
|
} |