RT state managment and rectangle support
This commit is contained in:
13
dotnet/AipsRT/Model/Whiteboard/Structs/Position.cs
Normal file
13
dotnet/AipsRT/Model/Whiteboard/Structs/Position.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace AipsRT.Model.Whiteboard.Structs;
|
||||
|
||||
public struct Position
|
||||
{
|
||||
public int X { get; set; }
|
||||
public int Y { get; set; }
|
||||
|
||||
public Position(int x, int y)
|
||||
{
|
||||
X = x;
|
||||
Y = y;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user