-- Copyright (c) 2012-2025 Daniele Bartolini et al. -- SPDX-License-Identifier: MIT local Behavior = Behavior or {} function Behavior.spawned(world, units) end function Behavior.unspawned(world, units) end function Behavior.update(world, dt) end return Behavior