UNPKG

multyx

Version:

Framework designed to simplify the creation of multiplayer browser games by addressing the complexities of managing server-client communication, shared state, and input handling

14 lines (12 loc) 276 B
import Client from './client'; import MultyxTeam from './team'; import { Controller, ControllerState, Input } from './controller'; type Agent = Client | MultyxTeam; export { Agent, Client, Controller, ControllerState, Input, MultyxTeam }