import { WebSocket } from "ws";

// ClientData
export interface ClientData {
	socket: WebSocket;
	id: number;
	name: string;
	money: number;
}