doukutsu-rs/src/lib.rs

31 lines
489 B
Rust
Raw Normal View History

2022-11-21 14:15:51 +00:00
//#![cfg_attr(target_os = "horizon", feature(restricted_std))]
#[macro_use]
extern crate log;
extern crate strum;
#[macro_use]
extern crate strum_macros;
mod common;
mod components;
2022-11-19 17:20:03 +00:00
mod data;
#[cfg(feature = "discord-rpc")]
pub mod discord;
2022-01-06 01:11:17 +00:00
#[cfg(feature = "editor")]
mod editor;
mod engine_constants;
mod entity;
2021-01-27 18:20:47 +00:00
mod framework;
2022-11-19 17:20:03 +00:00
pub mod game;
mod graphics;
2022-03-15 01:54:03 +00:00
mod i18n;
2022-01-06 01:11:17 +00:00
mod input;
mod live_debugger;
mod macros;
mod menu;
2022-02-10 09:21:28 +00:00
mod mod_list;
2022-03-15 22:18:25 +00:00
mod mod_requirements;
mod scene;
mod sound;
2022-11-19 17:20:03 +00:00
mod util;