WIP: new-cbs #117

Closed
kazhnuz wants to merge 23 commits from new-cbs into master
Showing only changes of commit 4bb1635cce - Show all commits

View file

@ -6,10 +6,12 @@ local TweenManager = require "birb.classes.time"
local Actions = require "game.modules.subgames.world.actors.fighters.mixins.actions" local Actions = require "game.modules.subgames.world.actors.fighters.mixins.actions"
local Movements = require "game.modules.subgames.world.actors.fighters.mixins.movements" local Movements = require "game.modules.subgames.world.actors.fighters.mixins.movements"
local Sprites = require "game.modules.subgames.world.actors.fighters.mixins.sprites" local Sprites = require "game.modules.subgames.world.actors.fighters.mixins.sprites"
local Abstract = require "game.modules.subgames.world.actors.fighters.mixins.abstract"
FighterParent:implement(Actions) FighterParent:implement(Actions)
FighterParent:implement(Movements) FighterParent:implement(Movements)
FighterParent:implement(Sprites) FighterParent:implement(Sprites)
FighterParent:implement(Abstract)
function FighterParent:new(world, x, y, w, h, d, fighterType) function FighterParent:new(world, x, y, w, h, d, fighterType)
FighterParent.super.new(self, world, fighterType, x, y, 0, w, h, d, true) FighterParent.super.new(self, world, fighterType, x, y, 0, w, h, d, true)