rust/lib-hedgewars-engine/src/render.rs
author Wuzzy <Wuzzy2@mail.ru>
Wed, 19 Jun 2019 20:37:02 +0200
changeset 15180 061a3085d6d8
parent 15120 febccab419b1
permissions -rw-r--r--
Make flames ignore bouncy world edge Rationale: Flame speed heavily relies on wind and cannot be reasonably reversed. The rationale is similar as for gtPoisonCloud.

pub mod atlas;
pub mod camera;
mod gear;
mod gl;
mod map;

use self::gl::*;
pub use self::map::*;
pub use gear::*;