Move to Typescript.

This commit is contained in:
Manuel Friedli 2023-04-17 02:43:36 +02:00
parent 34618860a4
commit ac964ddd3f
16 changed files with 482 additions and 119 deletions

4
src/model/Coordinates.ts Normal file
View file

@ -0,0 +1,4 @@
export default interface Coordinates {
x: number,
y: number
}