Files
MacroLibX/runtime/Includes/Core/EventBase.h
2024-09-02 09:44:42 +02:00

13 lines
148 B
C++

#ifndef __MLX_BASE_EVENT__
#define __MLX_BASE_EVENT__
namespace mlx
{
struct EventBase
{
virtual std::uint32_t What() const = 0;
};
}
#endif