aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/context
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-01-09 14:50:41 -0600
committermat <github@matdoes.dev>2022-01-09 14:50:41 -0600
commit8331851d972b42b68e1fb64e2ec9faef6c02be32 (patch)
tree35f8a0c9175a10f626835f7930660ef7e7415acf /azalea-brigadier/src/context
parentd959fb2d0cc4d8ad97eae86666876e22b2e50613 (diff)
downloadazalea-drasl-8331851d972b42b68e1fb64e2ec9faef6c02be32.tar.xz
string reader
Diffstat (limited to 'azalea-brigadier/src/context')
-rw-r--r--azalea-brigadier/src/context/command_context.rs3
-rw-r--r--azalea-brigadier/src/context/mod.rs6
2 files changed, 9 insertions, 0 deletions
diff --git a/azalea-brigadier/src/context/command_context.rs b/azalea-brigadier/src/context/command_context.rs
index e69de29b..ddbb447e 100644
--- a/azalea-brigadier/src/context/command_context.rs
+++ b/azalea-brigadier/src/context/command_context.rs
@@ -0,0 +1,3 @@
+pub struct CommandContext<S> {
+ source: S,
+}
diff --git a/azalea-brigadier/src/context/mod.rs b/azalea-brigadier/src/context/mod.rs
index e69de29b..196d7c5b 100644
--- a/azalea-brigadier/src/context/mod.rs
+++ b/azalea-brigadier/src/context/mod.rs
@@ -0,0 +1,6 @@
+pub mod command_context;
+pub mod command_context_builder;
+pub mod parsed_argument;
+pub mod parsed_command_node;
+pub mod string_range;
+pub mod suggestion_context;