summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Trait/Method/Command.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games/Trait/Method/Command.pm')
-rw-r--r--lib/Bot/Games/Trait/Method/Command.pm24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/Bot/Games/Trait/Method/Command.pm b/lib/Bot/Games/Trait/Method/Command.pm
deleted file mode 100644
index 25bd2ff..0000000
--- a/lib/Bot/Games/Trait/Method/Command.pm
+++ /dev/null
@@ -1,24 +0,0 @@
-package Bot::Games::Trait::Method::Command;
-use Bot::Games::OO::Role;
-
-has pass_args => (
- is => 'rw',
- isa => 'Bool',
- default => 1,
-);
-
-has needs_init => (
- is => 'rw',
- isa => 'Bool',
- default => 1,
-);
-
-around execute => sub {
- my $orig = shift;
- my $self = shift;
- return $self->pass_args ? $self->$orig(@_) : $self->$orig($_[0]);
-};
-
-no Bot::Games::OO::Role;
-
-1;