First Commit

This commit is contained in:
evanpelle
2024-08-04 19:51:23 -07:00
commit 05f55c490f
53 changed files with 15862 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import {ClientID} from "../core/Game";
import WebSocket from 'ws';
export class Client {
constructor(public readonly id: ClientID, public readonly ws: WebSocket) { }
}