17 lines
283 B
C++
17 lines
283 B
C++
// SPDX-FileCopyrightText: 2024 Yury Gubich <blue@macaw.me>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class Actor {
|
|
public:
|
|
Actor(const std::string& group);
|
|
|
|
void setGroup(const std::string& newGroup);
|
|
|
|
private:
|
|
std::string group;
|
|
};
|