jay/component/actor.h

17 lines
283 B
C
Raw Permalink Normal View History

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