2024-01-01 15:41:47 -08:00
|
|
|
//! This module handles all game data: ship damage, outfit stats, etc.
|
|
|
|
//!
|
|
|
|
//! The code here handles game *data* exclusively: it keeps track of the status
|
|
|
|
//! of every ship in the game, but it has no understanding of physics.
|
|
|
|
//! That is done in `galactica_world`.
|
|
|
|
|
2024-01-08 23:05:07 -08:00
|
|
|
mod gamedata;
|
|
|
|
mod handles;
|
|
|
|
pub mod ship;
|
2024-01-01 15:46:39 -08:00
|
|
|
mod system;
|
2024-01-01 15:41:47 -08:00
|
|
|
|
2024-01-08 23:05:07 -08:00
|
|
|
pub use gamedata::*;
|
|
|
|
pub use handles::*;
|
2024-01-08 22:38:36 -08:00
|
|
|
pub use system::{System, SystemObject};
|