summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-26 19:15:18 -0500
committerdoy <doy@tozt.net>2009-04-26 19:15:18 -0500
commit39d4781a8db91a1892ffb170117a7e623348ebc3 (patch)
tree3e3c9bdbf47eb43c62e1b3658c7e2ddbc1c5cee7 /lib/Bot/Games/Game
parentb6b768619fd072d0d92760ba820ba02a8924e5f9 (diff)
downloadbot-games-39d4781a8db91a1892ffb170117a7e623348ebc3.tar.gz
bot-games-39d4781a8db91a1892ffb170117a7e623348ebc3.zip
use a separate exporter package for games
Diffstat (limited to 'lib/Bot/Games/Game')
-rw-r--r--lib/Bot/Games/Game/24.pm2
-rw-r--r--lib/Bot/Games/Game/Ghost.pm2
-rw-r--r--lib/Bot/Games/Game/Spook.pm2
-rw-r--r--lib/Bot/Games/Game/Superghost.pm2
-rw-r--r--lib/Bot/Games/Game/Xghost.pm2
5 files changed, 5 insertions, 5 deletions
diff --git a/lib/Bot/Games/Game/24.pm b/lib/Bot/Games/Game/24.pm
index 8dc2b80..e8790f4 100644
--- a/lib/Bot/Games/Game/24.pm
+++ b/lib/Bot/Games/Game/24.pm
@@ -1,5 +1,5 @@
package Bot::Games::Game::24;
-use Bot::Games::OO;
+use Bot::Games::OO::Game;
extends 'Bot::Games::Game';
use List::Util qw/shuffle/;
diff --git a/lib/Bot/Games/Game/Ghost.pm b/lib/Bot/Games/Game/Ghost.pm
index 4751506..1c8f9f7 100644
--- a/lib/Bot/Games/Game/Ghost.pm
+++ b/lib/Bot/Games/Game/Ghost.pm
@@ -1,5 +1,5 @@
package Bot::Games::Game::Ghost;
-use Bot::Games::OO;
+use Bot::Games::OO::Game;
use Games::Word::Wordlist;
extends 'Bot::Games::Game';
diff --git a/lib/Bot/Games/Game/Spook.pm b/lib/Bot/Games/Game/Spook.pm
index 46fd9e9..58faa56 100644
--- a/lib/Bot/Games/Game/Spook.pm
+++ b/lib/Bot/Games/Game/Spook.pm
@@ -1,5 +1,5 @@
package Bot::Games::Game::Spook;
-use Bot::Games::OO;
+use Bot::Games::OO::Game;
use Games::Word qw/is_subpermutation/;
extends 'Bot::Games::Game::Ghost';
diff --git a/lib/Bot/Games/Game/Superghost.pm b/lib/Bot/Games/Game/Superghost.pm
index dc8cc7e..d346571 100644
--- a/lib/Bot/Games/Game/Superghost.pm
+++ b/lib/Bot/Games/Game/Superghost.pm
@@ -1,5 +1,5 @@
package Bot::Games::Game::Superghost;
-use Bot::Games::OO;
+use Bot::Games::OO::Game;
extends 'Bot::Games::Game::Ghost';
has '+help' => (
diff --git a/lib/Bot/Games/Game/Xghost.pm b/lib/Bot/Games/Game/Xghost.pm
index 5777b36..956b048 100644
--- a/lib/Bot/Games/Game/Xghost.pm
+++ b/lib/Bot/Games/Game/Xghost.pm
@@ -1,5 +1,5 @@
package Bot::Games::Game::Xghost;
-use Bot::Games::OO;
+use Bot::Games::OO::Game;
use Games::Word qw/is_substring/;
extends 'Bot::Games::Game::Ghost';