summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game.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.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.pm')
-rw-r--r--lib/Bot/Games/Game.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bot/Games/Game.pm b/lib/Bot/Games/Game.pm
index 108e65f..f67538f 100644
--- a/lib/Bot/Games/Game.pm
+++ b/lib/Bot/Games/Game.pm
@@ -1,6 +1,6 @@
#!/usr/bin/perl
package Bot::Games::Game;
-use Moose;
+use Bot::Games::OO;
use MooseX::AttributeHelpers;
use DateTime;
@@ -42,7 +42,7 @@ sub turn { "Games must provide a turn method" }
after turn => sub { shift->last_turn_time(DateTime->now) };
__PACKAGE__->meta->make_immutable;
-no Moose;
+no Bot::Games::OO;
no MooseX::AttributeHelpers;
1;