summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-24 23:27:01 -0500
committerdoy <doy@tozt.net>2009-04-24 23:27:01 -0500
commit2bb2c85f4cd80117df0bfb25330b57b5eeb0474f (patch)
tree29b41302c39231a303bd1343093885de718a14a7
parent93220f905ec24e3a4ea4367fe15ed7c86b40f68b (diff)
downloadbot-games-2bb2c85f4cd80117df0bfb25330b57b5eeb0474f.tar.gz
bot-games-2bb2c85f4cd80117df0bfb25330b57b5eeb0474f.zip
remove ghost
-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;