summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/OO.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games/OO.pm')
-rw-r--r--lib/Bot/Games/OO.pm18
1 files changed, 2 insertions, 16 deletions
diff --git a/lib/Bot/Games/OO.pm b/lib/Bot/Games/OO.pm
index 177af74..119718d 100644
--- a/lib/Bot/Games/OO.pm
+++ b/lib/Bot/Games/OO.pm
@@ -1,24 +1,10 @@
package Bot::Games::OO;
-use Moose ();
+use IM::Engine::Plugin::Commands::OO ();
use MooseX::AttributeHelpers;
use Moose::Exporter;
-use Moose::Util::MetaRole;
Moose::Exporter->setup_import_methods(
- also => ['Moose'],
+ also => ['IM::Engine::Plugin::Commands::OO'],
);
-sub init_meta {
- shift;
- my %options = @_;
- Moose->init_meta(%options);
- Moose::Util::MetaRole::apply_metaclass_roles(
- for_class => $options{for_class},
- metaclass_roles => ['MooseX::NonMoose::Meta::Role::Class'],
- constructor_metaclass_roles =>
- ['MooseX::NonMoose::Meta::Role::Constructor'],
- );
- return $options{for_class}->meta;
-}
-
1;