rust/lib-hedgewars-engine/src/ipc.rs
author Wuzzy <Wuzzy2@mail.ru>
Mon, 16 Sep 2019 17:33:49 +0200
changeset 15415 8504fee3b601
parent 15289 ae8e14d14596
permissions -rw-r--r--
Racer: Fix weird water splashes after waypoint placement Does not affect official racer, as only waypoint placement is touched. The reason was that the air attack gear sometimes was not deleted fast enough so it might occassionally drop some air bombs (these are deleted now). Also, the airplane position was set to water level, which caused another water splash.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15270
07e909ba4203 Implement ipc queue which takes care of message ordering and timestamps
unC0Rr
parents: 14299
diff changeset
     1
mod channel;
14265
f0c0d2d217c3 IPC implementation
unC0Rr
parents: 14260
diff changeset
     2
15270
07e909ba4203 Implement ipc queue which takes care of message ordering and timestamps
unC0Rr
parents: 14299
diff changeset
     3
pub use self::channel::*;