added Vue

This commit is contained in:
j-weissen 2023-01-12 12:24:38 +01:00
parent d93a5fd6a1
commit 10508ded4b
37 changed files with 15941 additions and 2884 deletions

View file

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