wosn do los

This commit is contained in:
dhain 2022-11-29 11:39:32 +01:00
parent 04ef8a872d
commit 43390fe7ce
5 changed files with 32 additions and 10 deletions

View file

@ -17,4 +17,9 @@ class Position {
set y(value: number) {
this._y = value;
}
constructor(x: number, y: number) {
this._x = x;
this._y = y;
}
}