blob: b87e61432e5d7aa8bf81fdfdd3c51aa639e5153f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#![allow(incomplete_features)]
#![feature(generic_const_exprs)]
#![doc = include_str!("../README.md")]
pub mod aabb;
pub mod bitset;
pub mod checksum;
pub mod codec_utils;
pub mod color;
pub mod cursor3d;
pub mod data_registry;
pub mod delta;
pub mod difficulty;
pub mod direction;
pub mod filterable;
pub mod game_type;
pub mod hit_result;
pub mod identifier;
pub mod math;
pub mod objectives;
pub mod position;
pub mod registry_holder;
pub mod resource_location {
#![deprecated(note = "renamed to `identifier`.")]
#[deprecated(note = "renamed to `identifier::Identifier`.")]
pub type ResourceLocation = crate::identifier::Identifier;
}
pub mod sound;
#[cfg(feature = "bevy_ecs")]
pub mod tick;
pub mod tier;
|