mirror of
https://codeberg.org/schrottkatze/mgd2-tram-championships.git
synced 2025-07-02 01:27:39 +00:00
make console startup text less useless
This commit is contained in:
parent
3b0bd65078
commit
3a3c238cd8
1 changed files with 4 additions and 2 deletions
|
@ -47,8 +47,10 @@ pub struct ConsoleLog(Vec<ConsoleEvent>, usize);
|
||||||
impl ConsoleLog {
|
impl ConsoleLog {
|
||||||
fn new() -> Self {
|
fn new() -> Self {
|
||||||
Self(
|
Self(
|
||||||
vec![ConsoleEvent::Output(String::from(
|
vec![ConsoleEvent::Output(format!(
|
||||||
"Welcome to the dev console :3\n (i should probably put some proper info into this some time)",
|
"Running {} ({})\nMeow!! :3",
|
||||||
|
env!("CARGO_PKG_NAME"),
|
||||||
|
env!("CARGO_PKG_VERSION")
|
||||||
))],
|
))],
|
||||||
1,
|
1,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue