mirror of
https://github.com/Noratrieb/game-wip-dontplay.git
synced 2026-01-14 19:55:02 +01:00
7 lines
184 B
Rust
7 lines
184 B
Rust
use sfml::audio::Music;
|
|
use crate::texture_atlas::AtlasBundle;
|
|
#[derive(Debug)]
|
|
pub(crate) struct Res {
|
|
pub(crate) atlas: AtlasBundle,
|
|
pub(crate) surf_music: Music<'static>,
|
|
}
|