8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { StateConfig, StateManagementFn } from "types";
|
|
|
|
const enter: StateManagementFn = async (_player) => {};
|
|
|
|
const exit: StateManagementFn = async (_player) => {};
|
|
|
|
export const lobbyState: StateConfig = { enter, exit };
|