rise-and-swine/Assets/Scripts/Assembly-CSharp/SpriteUVSelection.cs
2023-02-25 23:04:03 -05:00

18 lines
286 B
C#

public class SpriteUVSelection
{
public SpriteUVSelection(int UVx, int UVy, int width, int height)
{
this.m_UVx = UVx;
this.m_UVy = UVy;
this.m_width = width;
this.m_height = height;
}
public int m_UVx;
public int m_UVy;
public int m_width;
public int m_height;
}