Add initial game code
This commit is contained in:
parent
f80a60e208
commit
1383997ebf
55 changed files with 1355 additions and 0 deletions
11
scripts/Structures/CoordinateVector.cs
Normal file
11
scripts/Structures/CoordinateVector.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
public struct CoordinateVector
|
||||
{
|
||||
public decimal X { get; set; }
|
||||
public decimal Y { get; set; }
|
||||
|
||||
public CoordinateVector(decimal x, decimal y)
|
||||
{
|
||||
this.X = x;
|
||||
this.Y = y;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue