Files

10 lines
168 B
TypeScript
Raw Permalink Normal View History

2021-08-26 21:28:10 +02:00
export default class Coordinates {
public x: number;
public y: number;
constructor(x: number, y: number) {
this.x = x;
this.y = y;
}
}