16 lines
300 B
Rust
16 lines
300 B
Rust
|
//! Content parts
|
||
|
|
||
|
pub mod engine;
|
||
|
pub mod faction;
|
||
|
pub mod gun;
|
||
|
pub mod ship;
|
||
|
pub mod system;
|
||
|
pub mod texture;
|
||
|
|
||
|
pub use engine::Engine;
|
||
|
pub use faction::Faction;
|
||
|
pub use gun::{Gun, Projectile};
|
||
|
pub use ship::{EnginePoint, GunPoint, Ship};
|
||
|
pub use system::{Object, System};
|
||
|
pub use texture::Texture;
|