websocket-canvas/server/ts/coordinates.ts
Robin Steinberg 78877f1211 Consolidated the server into the project
Added npm scripts to build and launch the whole project
2021-08-26 21:28:10 +02:00

10 lines
168 B
TypeScript

export default class Coordinates {
public x: number;
public y: number;
constructor(x: number, y: number) {
this.x = x;
this.y = y;
}
}