2023-12-30 16:57:03 -08:00
|
|
|
//! Content parts
|
|
|
|
|
|
|
|
pub mod engine;
|
|
|
|
pub mod faction;
|
|
|
|
pub mod gun;
|
|
|
|
pub mod ship;
|
|
|
|
pub mod system;
|
|
|
|
pub mod texture;
|
|
|
|
|
|
|
|
pub use engine::Engine;
|
2023-12-30 17:39:19 -08:00
|
|
|
pub use faction::{Faction, Relationship};
|
2023-12-30 16:57:03 -08:00
|
|
|
pub use gun::{Gun, Projectile};
|
|
|
|
pub use ship::{EnginePoint, GunPoint, Ship};
|
|
|
|
pub use system::{Object, System};
|
|
|
|
pub use texture::Texture;
|