added Vue
This commit is contained in:
parent
d93a5fd6a1
commit
10508ded4b
37 changed files with 15941 additions and 2884 deletions
10
frontend/game/model/Collidable.ts
Normal file
10
frontend/game/model/Collidable.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
/**
|
||||
* Collide-able objects.
|
||||
*/
|
||||
interface Collidable {
|
||||
/**
|
||||
* Determines when two entities collide
|
||||
* @param o other entity
|
||||
*/
|
||||
collides(o: Entity): boolean;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue