This commit is contained in:
2026-06-26 20:42:38 -04:00
commit a332e85658
134 changed files with 17288 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { StateConfig, StateManagementFn } from "types";
const enter: StateManagementFn = async (_player) => {};
const exit: StateManagementFn = async (_player) => {};
export const lobbyState: StateConfig = { enter, exit };