add m_key

This commit is contained in:
2025-04-17 17:21:12 +03:00
parent b2f72b5a60
commit 863349eee5

View File

@@ -1,5 +1,6 @@
#pragma once #pragma once
#include <string>
#include "event/event.hpp" #include "event/event.hpp"
#include "utils/using.hpp" #include "utils/using.hpp"
@@ -23,6 +24,7 @@ namespace VE
protected: protected:
event_fn<event> execute; event_fn<event> execute;
std::string m_key;
}; };
} }