rust/hedgewars-server/src/server.rs
author Wuzzy <Wuzzy2@mail.ru>
Tue, 22 Jan 2019 21:34:13 +0100
changeset 14666 95b1b9ea505a
parent 14457 98ef2913ec73
child 14692 e5415faa117b
permissions -rw-r--r--
Shorten text of buttons to load/edit drawn map and make them look nicer
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
     1
mod actions;
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     2
pub mod client;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
     3
pub mod core;
12130
6273f89ab13d Start on messages parser
unc0rr
parents: 12128
diff changeset
     4
pub mod coretypes;
14456
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14415
diff changeset
     5
#[cfg(feature = "official-server")]
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14415
diff changeset
     6
mod database;
14457
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
     7
mod handlers;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
     8
pub mod io;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
     9
pub mod network;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14456
diff changeset
    10
pub mod room;