---@type RuntimeCommands local commands = runtime.import("runtime_commands") local animation = {} function animation.move_piece(piece_id, path) return commands.move_path(piece_id, path, { duration = 0.55, onComplete = "piece_move_done" }) end function animation.toast(text) return commands.toast(text) end return animation