• This project
    • Loading...
  • Sign in

강동현 / nodejs-game

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • nodejs-game
  • server
  • room
  • types.ts
  • 강동현's avatar
    방에서 User 객체를 사용하도록 변경 · cde2403a
    cde2403a Browse Files
    강동현 authored 2021-05-23 16:57:56 +0900
types.ts 106 Bytes
Raw Blame History Permalink
1 2 3 4 5 6
export interface RoomData {
  uuid: string;
  name: string;
  currentUsers: number;
  maxUsers: number;
}