UNPKG

gameguard

Version:

GameGuard is a NodeJS game server that can be used to manage the players connecting to your game, manage rooms and the players in them, and more.

7 lines (6 loc) 175 B
import mongoose from 'mongoose'; /** * Defines the structure of a player in mongodb. */ declare const PlayerSchema: mongoose.Schema<any>; export default PlayerSchema;