This commit is contained in:
2022-01-29 00:01:48 +02:00
parent dcaf6d8077
commit 99fd3de775
4 changed files with 101 additions and 16 deletions

4
src/position.ts Normal file
View File

@@ -0,0 +1,4 @@
export class Position {
public x: number = 0;
public y: number = 0;
}