Essgee.Unity/Assets/Plugins/Essgee/EventArguments/SizeScreenEventArgs.cs

21 lines
390 B
C#
Raw Normal View History

2025-01-02 17:55:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Essgee.EventArguments
{
public class SizeScreenEventArgs : EventArgs
{
public int Width { get; private set; }
public int Height { get; private set; }
public SizeScreenEventArgs(int width, int height)
{
Width = width;
Height = height;
}
}
}