/
dieoska
/
ddnet
Обзор
Документация
Войти
/
dieoska
/
ddnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/base/lib.rs
19 строк
482 B
heinrich5991
Add support for Rust code in DDNet
20 окт 2022, 00:46
20 окт 2022, 00:46
dcd76fd
Код
Авторство
О чём код?
//! 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::*;