Cleans forgotten useless commentaries

This commit is contained in:
Benedicte Quimbert 2021-10-29 18:53:55 +02:00
parent 58e36ebed2
commit 926fcf9d63

View file

@ -72,7 +72,6 @@ export class WorkadventurePlayerCommands extends IframeApiContribution<Workadven
}
async getPosition(): Promise<Position> {
//TODO: type
return await queryWorkadventure({
type: "getPlayerPosition",
data: undefined,
@ -80,8 +79,7 @@ export class WorkadventurePlayerCommands extends IframeApiContribution<Workadven
}
}
//TODO: move or delete
type Position = {
export type Position = {
x: number;
y: number;
};