aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/lib.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-05-07 01:55:08 -0500
committermat <git@matdoes.dev>2023-05-07 01:55:08 -0500
commit2823e508b389194ee1d8b3f4180fc3a15a7e077e (patch)
treed7133d1344b143cad7df1846efc12f092835513e /azalea-brigadier/src/lib.rs
parent84c0908f34b301c6ddb96ae4c314672f690f1bff (diff)
downloadazalea-drasl-2823e508b389194ee1d8b3f4180fc3a15a7e077e.tar.xz
more brigadier argument types
Diffstat (limited to 'azalea-brigadier/src/lib.rs')
-rwxr-xr-xazalea-brigadier/src/lib.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/azalea-brigadier/src/lib.rs b/azalea-brigadier/src/lib.rs
index eb670643..8b8e116e 100755
--- a/azalea-brigadier/src/lib.rs
+++ b/azalea-brigadier/src/lib.rs
@@ -10,3 +10,15 @@ pub mod parse_results;
pub mod string_reader;
pub mod suggestion;
pub mod tree;
+
+pub mod prelude {
+ pub use crate::{
+ arguments::{
+ double_argument_type::double, float_argument_type::float,
+ integer_argument_type::integer, long_argument_type::long, string_argument_type::string,
+ },
+ builder::{literal_argument_builder::literal, required_argument_builder::argument},
+ command_dispatcher::CommandDispatcher,
+ context::CommandContext,
+ };
+}