// Copyright (c) 2026 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT // Entry point run once at startup (see game.c). Swap which scene module // gets passed to Scene.set() here to change what the game boots into. var overworldScene = require('./overworldscene.js'); Scene.set(overworldScene);