18 lines
286 B
C#
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;
|
|
}
|