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

11 lines
345 B
TypeScript

export interface OutlineableInterface {
setFollowOutlineColor(color: number): void;
removeFollowOutlineColor(): void;
setApiOutlineColor(color: number): void;
removeApiOutlineColor(): void;
pointerOverOutline(): void;
pointerOutOutline(): void;
characterCloseByOutline(): void;
characterFarAwayOutline(): void;
}