summaryrefslogtreecommitdiff
path: root/src/schemas/stream.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/schemas/stream.hpp')
-rw-r--r--src/schemas/stream.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/schemas/stream.hpp b/src/schemas/stream.hpp
index bfb60b5..a636ea5 100644
--- a/src/schemas/stream.hpp
+++ b/src/schemas/stream.hpp
@@ -1,6 +1,11 @@
#pragma once
+#include <string>
+
namespace bot::schemas {
enum EventType { LIVE, OFFLINE, TITLE, GAME, CUSTOM = 99 };
+ EventType string_to_event_type(const std::string &type);
+
enum EventFlag { MASSPING };
+
}