Fixed use errors

This commit is contained in:
Alex Kerr 2015-01-07 16:24:35 +00:00
parent 4096da9663
commit 19be5e6e6a
9 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::Assassin; package OSRIC::Classes::Assassin;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::Cleric; package OSRIC::Classes::Cleric;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::Druid; package OSRIC::Classes::Druid;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::Fighter; package OSRIC::Classes::Fighter;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::Illusionist; package OSRIC::Classes::Illusionist;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::MagicUser; package OSRIC::Classes::MagicUser;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::Paladin; package OSRIC::Classes::Paladin;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::Ranger; package OSRIC::Classes::Ranger;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get

View File

@ -1,5 +1,5 @@
package OSRIC::Classes::Thief; package OSRIC::Classes::Thief;
use parent qw(Classes); use parent qw(OSRIC::Classes);
use OSRIC::Util qw/d/; use OSRIC::Util qw/d/;
# A sub to get the maximum amount of starting gold (for sorting) and one to get # A sub to get the maximum amount of starting gold (for sorting) and one to get