summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game/Xghost.pm
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-01-14 21:54:47 -0500
committerdoy <doy@tozt.net>2009-01-14 21:54:47 -0500
commitcf4fcd5f358fac448a6c7705f15a8612429bbe51 (patch)
tree89bcd5730e4cb5f9133fab2f0b7dc3db1d336b45 /lib/Bot/Games/Game/Xghost.pm
parent94a9a6a179e48f2d98ecc2954cd33ec6e7f5c10a (diff)
downloadbot-games-cf4fcd5f358fac448a6c7705f15a8612429bbe51.tar.gz
bot-games-cf4fcd5f358fac448a6c7705f15a8612429bbe51.zip
use Bot::Games::OO rather than Moose directly
Diffstat (limited to 'lib/Bot/Games/Game/Xghost.pm')
-rw-r--r--lib/Bot/Games/Game/Xghost.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bot/Games/Game/Xghost.pm b/lib/Bot/Games/Game/Xghost.pm
index 5cb6695..8aeabb2 100644
--- a/lib/Bot/Games/Game/Xghost.pm
+++ b/lib/Bot/Games/Game/Xghost.pm
@@ -1,6 +1,6 @@
#!/usr/bin/perl
package Bot::Games::Game::Xghost;
-use Moose;
+use Bot::Games::OO;
use Games::Word qw/is_substring/;
extends 'Bot::Games::Game::Ghostlike';
@@ -16,6 +16,6 @@ sub valid_move {
}
__PACKAGE__->meta->make_immutable;
-no Moose;
+no Bot::Games::OO;
1;