Add basic multiplayer

This commit is contained in:
schmelczerandras 2020-10-05 19:07:17 +02:00
parent 0f0a1eaf67
commit 46a48e7c15
113 changed files with 1362 additions and 754 deletions

29
shared/src/main.ts Normal file
View file

@ -0,0 +1,29 @@
export * from './commands/command';
export * from './commands/types/create-objects';
export * from './commands/types/create-player';
export * from './commands/types/delete-objects';
export * from './commands/types/update-objects';
export * from './commands/types/ternary-action';
export * from './commands/types/move-action';
export * from './commands/types/set-view-area-action';
export * from './commands/types/primary-action';
export * from './commands/types/secondary-action';
export * from './commands/command-receiver';
export * from './commands/command-generator';
export * from './commands/broadcast-commands';
export * from './helper/array';
export * from './helper/clamp';
export * from './helper/circle';
export * from './helper/rectangle';
export * from './helper/mix';
export * from './helper/random';
export * from './helper/unique';
export * from './helper/rotate-90-deg';
export * from './objects/game-object';
export * from './objects/deserialize';
export * from './objects/types/character-base';
export * from './objects/types/lamp-base';
export * from './objects/types/tunnel-base';
export * from './settings';
export * from './transport/transport-events';
export * from './transport/identity';