Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
XY.cs
Go to the documentation of this file.
1public struct XY
2{
3 public int x;
4
5 public int y;
6
7 public XY(int _x, int _y)
8 {
9 x = _x;
10 y = _y;
11 }
12}
Definition: XY.cs:2
int y
Definition: XY.cs:5
XY(int _x, int _y)
Definition: XY.cs:7
int x
Definition: XY.cs:3