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

11 lines
345 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(): void;
pointerOutOutline(): void;
characterCloseByOutline(): void;
characterFarAwayOutline(): void;
2022-01-27 16:50:25 +01:00
}