8 lines
149 B
Rust
8 lines
149 B
Rust
|
use crate::game::Game;
|
||
|
|
||
|
pub trait Plugin {
|
||
|
/// Setup this plugin. This runs before the game has started
|
||
|
fn setup(&self, game: &mut Game);
|
||
|
}
|
||
|
|