Version 2 initial commit

This commit is contained in:
RobinLinus 2018-09-21 16:05:03 +02:00
parent 81252d301c
commit 663db5cbb3
99 changed files with 2448 additions and 27650 deletions

View file

@ -0,0 +1,34 @@
class ServerConnection {
}
class Connection {
}
class WSConnection extends Connection {
}
class RTCConnection extends Connection {
}
class Peer {
constructor(serverConnection) {
this._ws = new WSConnection(serverConnection);
this._rtc = new RTCConnection(serverConnection);
this._fileReceiver = new FileReceiver(this);
this._fileSender = new FileSender(this);
}
send(message) {
}
}
class Peers {
}