cultivation/Assets/Scripts/Common/Events/ScreenResizeEvent.cs

8 lines
131 B
C#

namespace Common.Events
{
public struct ScreenResizeEvent
{
public int width;
public int height;
}
}