Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
POINT.cs
Go to the documentation of this file.
1namespace B83.Win32;
2
3public struct POINT
4{
5 public int x;
6
7 public int y;
8
9 public POINT(int aX, int aY)
10 {
11 x = aX;
12 y = aY;
13 }
14
15 public override string ToString()
16 {
17 return "(" + x + ", " + y + ")";
18 }
19}
POINT(int aX, int aY)
Definition: POINT.cs:9
override string ToString()
Definition: POINT.cs:15