chore: make character utils part of game utils
This commit is contained in:
parent
216a047d3a
commit
69d67b97d8
3 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ AbstractMobParent = require "game.abstractmobs.parent"
|
|||
|
||||
AbstractCharacter = AbstractMobParent:extend()
|
||||
|
||||
local charutils = require "game.abstractmobs.utils"
|
||||
local charutils = require "game.utils.characters"
|
||||
|
||||
function AbstractCharacter:new(name)
|
||||
self.simplename = name
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
local CharacterManager = Object:extend()
|
||||
|
||||
local charutils = require "game.abstractmobs.utils"
|
||||
local charutils = require "game.utils.characters"
|
||||
local AbstractCharacter = require "game.abstractmobs.character"
|
||||
|
||||
function CharacterManager:new(controller)
|
||||
|
|
Loading…
Reference in a new issue