Some more thoughts

This commit is contained in:
Blue 2025-03-03 21:36:02 +02:00
parent b997972ec1
commit bc2dc9bf07
Signed by: blue
GPG key ID: 9B203B252A63EE38
18 changed files with 146 additions and 42 deletions

View file

@ -3,10 +3,18 @@
#pragma once
#include <string>
namespace Module {
class Module {
protected:
Module();
virtual void message(const std::string& text) = 0;
public:
virtual ~Module() noexcept;
};
}