rust/lib-hedgewars-engine/src/render.rs
author unC0Rr
Thu, 22 Oct 2020 12:33:35 +0200
branch1.0.0
changeset 15887 6b10b0cdbeab
parent 15141 febccab419b1
permissions -rw-r--r--
Mark global variables in implementation section static
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15141
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     1
pub mod atlas;
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     2
pub mod camera;
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     3
mod gear;
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     4
mod gl;
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     5
mod map;
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     6
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     7
use self::gl::*;
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     8
pub use self::map::*;
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14750
diff changeset
     9
pub use gear::*;