Cleanup of useless files

This commit is contained in:
David Négrier 2020-12-04 15:58:31 +01:00
parent 10ee00e08a
commit 5d188e51b2
36 changed files with 29 additions and 684 deletions

View file

@ -0,0 +1,6 @@
import {PointInterface} from "./PointInterface";
export class Point implements PointInterface{
constructor(public x : number, public y : number, public direction : string = "none", public moving : boolean = false) {
}
}