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

11 lines
371 B
TypeScript
Raw Normal View History

2022-01-26 14:59:23 +01:00
export interface OutlineableInterface {
2022-02-02 13:30:49 +01:00
setFollowOutlineColor(color: number): void;
removeFollowOutlineColor(): void;
setApiOutlineColor(color: number): void;
removeApiOutlineColor(): void;
pointerOverOutline(color: number): void;
2022-02-02 13:30:49 +01:00
pointerOutOutline(): void;
characterCloseByOutline(color: number): void;
2022-02-02 13:30:49 +01:00
characterFarAwayOutline(): void;
2022-01-27 16:50:25 +01:00
}