add new files

This commit is contained in:
Evan Pratten 2022-03-19 11:54:52 -04:00
parent efc218a7c5
commit 12f084fff8
4 changed files with 16 additions and 4 deletions

View File

@ -4,4 +4,6 @@
2. [Getting Started](getting-started.md)
1. [Development Environment](development-environment.md)
2. [Artist Information](artist-information.md)
3. [Infrastructure Overview](infrastructure-overview.md)
3. [Infrastructure Overview](infrastructure-overview.md)
4. [Software Design](software-design.md)
1. [Asset Manager](design-asset-manager.md)

9
game/dist/project-constants.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"game_name": "Ludum Dare 50",
"base_window_size": [
1080,
720
],
"discord_app_id": 954413081918857276,
"target_fps": 60
}

View File

View File

@ -2,9 +2,10 @@
use std::borrow::Borrow;
mod persistent;
mod rendering;
mod discord;
pub mod persistent;
pub mod rendering;
pub mod discord;
pub mod asset_manager;
/// This is the game logic entrypoint. Despite being async,
/// this is expected to block the main thread for rendering and stuff.