Create shared build_app() function for all platforms #42
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description:
Centralize Bevy initialization so both native and WASM use the same app setup.
Tasks:
Add build_app() function
Move DefaultPlugins into it
Register CoreGamePlugin inside it
Update all entrypoints to call build_app().run()
Acceptance Criteria:
App starts on both native and WASM
No behavior changes