Files
Archimedes/include/utils/Events/Event.h
2025-04-19 15:08:39 -05:00

22 lines
280 B
C++

#ifndef EVENT_H
#define EVENT_H
#include "pch.hpp"
namespace Archimedes {
class Event {
public:
virtual ~Event() {
std::cout << (std::string)*this;
}
virtual operator std::string() const = 0;
};
}
#endif