rust/lib-hedgewars-engine/src/render.rs
author unC0Rr
Tue, 17 Dec 2024 15:44:21 +0100
branchtransitional_engine
changeset 16078 db18f1a30b0c
parent 15141 febccab419b1
permissions -rw-r--r--
Implement passing of available ammo to rust AI

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

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