Move game logic plugin configuration to game-specific plugin
This commit is contained in:
parent
d6c4741582
commit
73ea0d6fd8
10 changed files with 136 additions and 70 deletions
|
|
@ -1,5 +1,13 @@
|
|||
mod objects;
|
||||
mod plugin;
|
||||
mod rng;
|
||||
pub mod runtime;
|
||||
pub mod seed;
|
||||
pub mod setup;
|
||||
mod runtime;
|
||||
mod seed;
|
||||
mod setup;
|
||||
pub mod state;
|
||||
|
||||
#[allow(unused_imports)]
|
||||
pub mod prelude {
|
||||
pub use super::plugin::{DataSource, GamePlugin};
|
||||
pub use super::seed::Seed;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue