YoggieEngine/BarinkEngine/Include/EventSystem/Event.h

9 lines
88 B
C
Raw Normal View History

#pragma once
#include <string>
struct Event
{
public:
std::string name;
2022-06-19 18:01:31 +00:00
};