2025-03-02 21:33:22 +02:00
|
|
|
// SPDX-FileCopyrightText: 2024 Yury Gubich <blue@macaw.me>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
#include "actor.h"
|
2025-03-03 21:36:02 +02:00
|
|
|
|
|
|
|
Actor::Actor(const std::string& group) :
|
|
|
|
group(group)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void Actor::setGroup(const std::string& newGroup) {
|
|
|
|
group = newGroup;
|
|
|
|
}
|