mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-10 22:23:34 +00:00
13 lines
148 B
C++
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
|