Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
cs-vampi/Position.cs

20 lines
321 B
C#

using System;
namespace vampi {
public struct Position {
public int x;
public int y;
public Position(int x, int y) {
this.x = x;
this.y = y;
}
public Position(Position pos) {
this.x = pos.x;
this.y = pos.y;
}
}
}