Essgee.Unity/Assets/Plugins/Essgee/EventArguments/ChangeViewportEventArgs.cs
2025-01-02 17:55:16 +08:00

19 lines
387 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Essgee.EventArguments
{
public class ChangeViewportEventArgs : EventArgs
{
public (int X, int Y, int Width, int Height) Viewport { get; private set; }
public ChangeViewportEventArgs((int, int, int, int) viewport)
{
Viewport = viewport;
}
}
}