Code review 2023-01-10

This commit is contained in:
s-prechtl 2023-01-10 08:45:34 +01:00
parent d748312d66
commit 637a867c7e
9 changed files with 13 additions and 5 deletions

View file

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