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