game-wip-dontplay/src/res.rs
2023-04-17 19:35:19 +02:00

13 lines
277 B
Rust

use sfml::audio::Music;
use crate::texture_atlas::AtlasBundle;
#[derive(Debug)]
pub struct Res {
pub atlas: AtlasBundle,
pub surf_music: Music<'static>,
pub und_music: Music<'static>,
}
impl Res {
pub fn load() -> anyhow::Result<Self> {
loop {}
}
}