-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathlib.rs
More file actions
25 lines (24 loc) · 848 Bytes
/
lib.rs
File metadata and controls
25 lines (24 loc) · 848 Bytes
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
pub mod minecraft {
pub mod lang {
feather_data_macro::include_data!("minecraft/assets/minecraft/lang");
}
pub mod advancements {
feather_data_macro::include_data!("minecraft/data/minecraft/advancements");
}
pub mod loot_tables {
feather_data_macro::include_data!("minecraft/data/minecraft/loot_tables");
}
pub mod recipes {
feather_data_macro::include_data!("minecraft/data/minecraft/recipes");
}
pub mod structures {
feather_data_macro::include_data!("minecraft/data/minecraft/structures");
}
pub mod tags {
feather_data_macro::include_data!("minecraft/data/minecraft/tags");
}
feather_data_macro::include_data!("minecraft/generated/reports");
}
pub mod minecraft_data {
feather_data_macro::include_data!("minecraft-data/data/pc/1.13.2");
}