rust/hedgewars-server/src/server.rs
author Wuzzy <Wuzzy2@mail.ru>
Wed, 22 May 2019 23:30:10 +0200
changeset 15035 2e89487540d8
parent 14784 f43ab2bd76ae
child 15079 c5a6e8566425
permissions -rw-r--r--
ACF2: Prevent cut scene from playing when own hogs are dead or about to die
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14462
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14461
diff changeset
     1
mod actions;
12133
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     2
pub mod client;
14462
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14461
diff changeset
     3
pub mod core;
12135
6273f89ab13d Start on messages parser
unc0rr
parents: 12133
diff changeset
     4
pub mod coretypes;
14461
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14420
diff changeset
     5
#[cfg(feature = "official-server")]
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14420
diff changeset
     6
mod database;
14462
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14461
diff changeset
     7
mod handlers;
14697
e5415faa117b add data structure for extending slabs
alfadur <mail@none>
parents: 14462
diff changeset
     8
pub mod indexslab;
14784
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14697
diff changeset
     9
#[cfg(feature = "official-server")]
14462
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14461
diff changeset
    10
pub mod io;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14461
diff changeset
    11
pub mod network;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14461
diff changeset
    12
pub mod room;