DDraceNetwork Docs
warning.h
Go to the documentation of this file.
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
Definition: warning.h:5
SWarning()=default
char m_aWarningTitle[128]
Definition: warning.h:13
SWarning & operator=(const SWarning &Other)
Definition: warning.cpp:23
char m_aWarningMsg[256]
Definition: warning.h:14
bool m_AutoHide
Definition: warning.h:15