15 lines
262 B
C++
15 lines
262 B
C++
|
// SPDX-FileCopyrightText: 2024 Yury Gubich <blue@macaw.me>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#include "actor.h"
|
||
|
|
||
|
Module::Actor::Actor():
|
||
|
Module()
|
||
|
{}
|
||
|
|
||
|
Module::Actor::~Actor() noexcept {}
|
||
|
|
||
|
void Module::Actor::message(const std::string& text) {
|
||
|
|
||
|
}
|