diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-20 22:54:17 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-20 22:57:39 +0200 |
commit | 7071dfe8259716375bb9f1373ea0b88a39102efa (patch) | |
tree | 32404c4af2324519ff09fc026dead77700d2ba86 /server/src/lib.rs | |
parent | 9ddb4d7786509bf5995bd5e254c611a05ea50eba (diff) | |
download | hurrycurry-7071dfe8259716375bb9f1373ea0b88a39102efa.tar hurrycurry-7071dfe8259716375bb9f1373ea0b88a39102efa.tar.bz2 hurrycurry-7071dfe8259716375bb9f1373ea0b88a39102efa.tar.zst |
server can register
Diffstat (limited to 'server/src/lib.rs')
-rw-r--r-- | server/src/lib.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/server/src/lib.rs b/server/src/lib.rs index c35a2b5a..ea514d5b 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -27,6 +27,7 @@ pub mod commands; pub mod data; pub mod entity; pub mod interaction; +pub mod register; pub mod scoreboard; pub mod server; pub mod state; @@ -72,7 +73,9 @@ macro_rules! trm_param { (t, $x:expr) => { hurrycurry_protocol::Message::Tile($x) }; - (m, $x:expr) => { $x }; + (m, $x:expr) => { + $x + }; } #[derive(Debug)] @@ -110,5 +113,7 @@ macro_rules! tre_param { (t, $x:expr) => { hurrycurry_protocol::Message::Tile($x) }; - (m, $x:expr) => { $x }; + (m, $x:expr) => { + $x + }; } |