rust/lib-hedgewars-engine/src/render.rs
author nemo
Thu, 10 Aug 2023 20:48:54 -0400
changeset 15974 8bb07b0f50ca
parent 15120 febccab419b1
permissions -rw-r--r--
add some round() so that the scale factor compiles at least with non-integer values

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

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