summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game/Ghost.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games/Game/Ghost.pm')
-rw-r--r--lib/Bot/Games/Game/Ghost.pm19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/Bot/Games/Game/Ghost.pm b/lib/Bot/Games/Game/Ghost.pm
deleted file mode 100644
index 82baf3b..0000000
--- a/lib/Bot/Games/Game/Ghost.pm
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/perl
-package Bot::Games::Game::Ghost;
-use Bot::Games::OO;
-extends 'Bot::Games::Game::Ghostlike';
-
-has '+help' => (
- default => "ghost help",
-);
-
-command valid_move => sub {
- my $self = shift;
- my ($move) = @_;
- return uc(substr($move, 0, -1)) eq $self->state;
-};
-
-__PACKAGE__->meta->make_immutable;
-no Bot::Games::OO;
-
-1;