This commit is contained in:
Kbz-8
2025-06-16 15:18:27 +02:00
parent 15510fa8a7
commit cd7e5ad26f
165 changed files with 78107 additions and 0 deletions

14
Runtime/Includes/Core/EventBase.h git.filemode.normal_file
View File

@@ -0,0 +1,14 @@
#ifndef __SCOPE_CORE_BASE_EVENT__
#define __SCOPE_CORE_BASE_EVENT__
#include <Core/Enums.h>
namespace Scop
{
struct EventBase
{
virtual Event What() const = 0;
};
}
#endif