add new files
This commit is contained in:
parent
efc218a7c5
commit
12f084fff8
@ -4,4 +4,6 @@
|
|||||||
2. [Getting Started](getting-started.md)
|
2. [Getting Started](getting-started.md)
|
||||||
1. [Development Environment](development-environment.md)
|
1. [Development Environment](development-environment.md)
|
||||||
2. [Artist Information](artist-information.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
9
game/dist/project-constants.json
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"game_name": "Ludum Dare 50",
|
||||||
|
"base_window_size": [
|
||||||
|
1080,
|
||||||
|
720
|
||||||
|
],
|
||||||
|
"discord_app_id": 954413081918857276,
|
||||||
|
"target_fps": 60
|
||||||
|
}
|
0
game/game_logic/src/asset_manager/mod.rs
Normal file
0
game/game_logic/src/asset_manager/mod.rs
Normal file
@ -2,9 +2,10 @@
|
|||||||
|
|
||||||
use std::borrow::Borrow;
|
use std::borrow::Borrow;
|
||||||
|
|
||||||
mod persistent;
|
pub mod persistent;
|
||||||
mod rendering;
|
pub mod rendering;
|
||||||
mod discord;
|
pub mod discord;
|
||||||
|
pub mod asset_manager;
|
||||||
|
|
||||||
/// This is the game logic entrypoint. Despite being async,
|
/// This is the game logic entrypoint. Despite being async,
|
||||||
/// this is expected to block the main thread for rendering and stuff.
|
/// this is expected to block the main thread for rendering and stuff.
|
||||||
|
Reference in New Issue
Block a user