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

11 lines
337 B
TypeScript
Raw Normal View History

2022-01-26 14:59:23 +01:00
export interface OutlineableInterface {
2022-01-27 14:05:30 +01:00
setFollowOutlineColor(color: number): void
removeFollowOutlineColor(): void
setApiOutlineColor(color: number): void
removeApiOutlineColor(): void
pointerOverOutline(): void
pointerOutOutline(): void
characterCloseByOutline(): void
characterFarAwayOutline(): void
2022-01-26 14:59:23 +01:00
}