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
32
33
34
35
36
37
// Allow the macro to reference the crate externally even from within itself
extern crate self as godot_bevy;
use ;
// Re-export BevyApp for testing and advanced usage
pub use ;
// Re-export inventory to avoid requiring users to add it as a dependency
pub use inventory;
// Re-export paste to avoid requiring users to add it as a dependency for transform sync macros
pub use paste;
;