Add Lobby #43

Merged
hamcha merged 18 commits from feature/lobby into master 2019-10-16 08:31:04 +00:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit c30b4c46e0 - Show all commits

View File

@ -10,6 +10,8 @@ const namespaced = true;
export const state: NetworkState = {
peerType: "none",
connectionStatus: null,
peer: null,
chatLog: []
};

View File

@ -25,6 +25,9 @@ export interface SharedNetworkState {
export interface NoNetworkState extends SharedNetworkState {
peerType: "none";
connectionStatus: null;
connectionError?: Error;
peer: null;
}
export interface ClientNetworkState extends SharedNetworkState {