mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
20 lines
482 B
Rust
20 lines
482 B
Rust
|
//! DDNet's base library, Rust part.
|
||
|
//!
|
||
|
//! DDNet's code base is separated into three major parts, `base`, `engine` and
|
||
|
//! `game`.
|
||
|
//!
|
||
|
//! The base library consists of operating system abstractions, and
|
||
|
//! game-independent data structures such as color handling and math vectors.
|
||
|
//! Additionally, it contains some types to support the C++-Rust-translation.
|
||
|
|
||
|
#![warn(missing_docs)]
|
||
|
|
||
|
#[cfg(test)]
|
||
|
extern crate ddnet_test;
|
||
|
|
||
|
mod color;
|
||
|
mod rust;
|
||
|
|
||
|
pub use color::*;
|
||
|
pub use rust::*;
|