workadventure/front/src/Phaser/Game/ActivatableInterface.ts
Hanusiak Piotr 45a7e9331b ran prettier
2022-02-02 13:30:49 +01:00

7 lines
190 B
TypeScript

export interface ActivatableInterface {
readonly activationRadius: number;
isActivatable: () => boolean;
activate: () => void;
getPosition: () => { x: number; y: number };
}