mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
415 B
20 lines
415 B
namespace ZeroLevel.NN.Models
|
|
{
|
|
public class OffsetBox
|
|
{
|
|
public int X { get; set; }
|
|
public int Y { get; set; }
|
|
public int Width { get; set; }
|
|
public int Height { get; set; }
|
|
|
|
public OffsetBox() { }
|
|
public OffsetBox(int x, int y, int w, int h)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
Width = w;
|
|
Height = h;
|
|
}
|
|
}
|
|
}
|