# GameServer **Repository Path**: duxvfeng/GameServer ## Basic Information - **Project Name**: GameServer - **Description**: 斗地主java 版本server版本开发中 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-16 - **Last Updated**: 2026-03-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ├── 游戏服务器 (GameServer) ├── 游戏大厅 (GameLobby) 全局唯一,默认创建3个房间 │ ├── 房间管理器 (RoomManager) 房间作用就是创建牌桌 │ └── 玩家管理器 (PlayerManager) -- 这个暂时不需要,放到GameTable逻辑中 ├── 游戏房间 (GameRoom) │ ├── 桌子 (GameTable) │ │ ├── 座位 (PlayerSeat) │ │ ├── 牌堆 (Deck) │ │ ├── 手牌类型 (HandType) │ │ └── 游戏逻辑 (RuleEngine) │ └── 观战者列表 --这个暂时不整 └── 玩家 (Player)