mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-05 09:39:32 -08:00
added pre-game text blobs
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
use crate::model::{Galaxy, Pos, SectorStatus, Enterprise, systems};
|
||||
|
||||
pub mod prompts {
|
||||
pub const INSTRUCTIONS: &str = "Do you need instructions";
|
||||
pub const COURSE: &str = "Course (1-9)?";
|
||||
pub const TORPEDO_COURSE: &str = "Photon torpedo course (1-9)?";
|
||||
pub const SHIELDS: &str = "Number of units to shields";
|
||||
@@ -15,6 +16,38 @@ pub mod prompts {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn title() {
|
||||
println!("
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
*************************************
|
||||
* *
|
||||
* *
|
||||
* * * SUPER STAR TREK * * *
|
||||
* *
|
||||
* *
|
||||
*************************************
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
");
|
||||
}
|
||||
|
||||
pub fn full_instructions() {
|
||||
println!(
|
||||
" INSTRUCTIONS FOR 'SUPER STAR TREK'
|
||||
|
||||
Reference in New Issue
Block a user