aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-brigadier/src/command.rs')
-rw-r--r--azalea-brigadier/src/command.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/azalea-brigadier/src/command.rs b/azalea-brigadier/src/command.rs
deleted file mode 100644
index a529f23c..00000000
--- a/azalea-brigadier/src/command.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-use crate::{
- context::command_context::CommandContext,
- exceptions::command_syntax_exception::CommandSyntaxException,
-};
-use dyn_clonable::*;
-
-pub const SINGLE_SUCCESS: i32 = 1;
-
-#[clonable]
-pub trait Command<S>: Clone {
- fn run(&self, context: &mut CommandContext<S>) -> Result<i32, CommandSyntaxException>;
-}