add event system and use it to propagate to print traces

This commit is contained in:
2026-06-05 17:18:17 +02:00
parent abc261c03a
commit 9677133c54
14 changed files with 369 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
#ifndef EVENT_H
#define EVENT_H
class Event
{
public:
virtual ~Event() = default;
};
#endif // EVENT_H