1#ifndef ENGINE_WARNING_H
2#define ENGINE_WARNING_H
3
4struct SWarning
5{
6 SWarning() = default;
7 SWarning(const SWarning &Other);
8 SWarning(const char *pMsg);
9 SWarning(const char *pTitle, const char *pMsg);
10
11 SWarning &operator=(const SWarning &Other);
12
13 char m_aWarningTitle[128] = "";
14 char m_aWarningMsg[256] = "";
15 bool m_AutoHide = true;
16};
17
18#endif
19