added Vue

This commit is contained in:
j-weissen 2023-01-12 12:14:59 +01:00
parent d93a5fd6a1
commit 2d7ab30ec6
36 changed files with 15930 additions and 2884 deletions

View file

@ -1,10 +0,0 @@
/**
* Collide-able objects.
*/
interface Collidable {
/**
* Determines when two entities collide
* @param o other entity
*/
collides(o: Entity): boolean;
}