// SPDX-FileCopyrightText: 2024 Yury Gubich // SPDX-License-Identifier: GPL-3.0-or-later #include "actor.h" Actor::Actor(const std::string& group) : group(group) {} void Actor::setGroup(const std::string& newGroup) { group = newGroup; }