rusty18n/
lib.rs

1mod core;
2mod macros;
3mod reflect;
4
5pub use crate::core::*;
6
7#[cfg(feature = "bevy_reflect")]
8pub use crate::reflect::*;
9
10/// This type is used to define a simple i18n resource that does not have any dynamic variables
11/// that shall be captured by thy. R stands for Resource.
12pub type R = String;
13
14/// This type is used to define a dynamic i18n resource that uses argument variables.
15/// DR stands for Dynamic Resource.
16pub type DR<A> = I18NDynamicResource<A>;