workadventure/front/src/Phaser/Game/ActivatableInterface.ts

7 lines
157 B
TypeScript
Raw Normal View History

2022-01-26 12:57:10 +01:00
export interface ActivatableInterface {
readonly activationRadius: number;
activate: () => void;
getPosition: () => { x: number, y: number };
}