This repository has been archived on 2021-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
|
export default class Coordinates {
|
|
public x: number;
|
|
public y: number;
|
|
|
|
constructor(x: number, y: number) {
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
}
|