This repository has been archived on 2021-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-48/src/logic/screen.rs

14 lines
371 B
Rust

use raylib::prelude::RaylibDrawHandle;
use crate::{gamecore::{GameCore, GameState}, lib::wrappers::audio::player::AudioPlayer};
/// A trait describing all game screens
pub trait Screen {
fn render(
&mut self,
draw_handle: &mut RaylibDrawHandle,
audio_system: &mut AudioPlayer,
game_core: &mut GameCore,
) -> Option<GameState>;
}