Merge remote-tracking branch 'origin/master' into fix_multiplayer_concurrency

This commit is contained in:
dwelle 2020-03-12 21:49:54 +01:00
commit 642e47bd03
7 changed files with 41 additions and 25 deletions

View file

@ -34,8 +34,7 @@ export type AppState = {
openMenu: "canvas" | "shape" | null;
lastPointerDownWith: PointerType;
selectedElementIds: { [id: string]: boolean };
remotePointers: { [id: string]: { x: number; y: number } };
collaboratorCount: number;
collaborators: Map<string, { pointer?: { x: number; y: number } }>;
};
export type PointerCoords = Readonly<{