Merge branch 'correct-merge' into metadataScriptAPIV2
This commit is contained in:
commit
9cd3ff1d31
8 changed files with 326 additions and 22 deletions
13
front/src/Api/Events/ChangeTileEvent.ts
Normal file
13
front/src/Api/Events/ChangeTileEvent.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import * as tg from "generic-type-guard";
|
||||
|
||||
export const isChangeTileEvent =
|
||||
new tg.IsInterface().withProperties({
|
||||
x: tg.isNumber,
|
||||
y: tg.isNumber,
|
||||
tile: tg.isUnion(tg.isNumber, tg.isString),
|
||||
layer: tg.isUnion(tg.isNumber, tg.isString)
|
||||
}).get();
|
||||
/**
|
||||
* A message sent from the game to the iFrame when a user enters or leaves a zone marked with the "zone" property.
|
||||
*/
|
||||
export type ChangeTileEvent = tg.GuardedType<typeof isChangeTileEvent>;
|
Loading…
Add table
Add a link
Reference in a new issue