Collision for obstacles

This commit is contained in:
s-prechtl 2022-12-13 09:41:30 +01:00
parent 7dd557f968
commit ce48419a40
3 changed files with 19 additions and 3 deletions

View file

@ -0,0 +1,3 @@
interface Collidable {
collides(o: Entity): boolean;
}