ddnet/src/engine/warning.h
heinrich5991 05af24a052 Make less headers depend on <base/system.h>
Move a couple of trivial type definitions to `<base/types.h>` instead.
2023-12-11 23:52:23 +01:00

17 lines
287 B
C

#ifndef ENGINE_WARNING_H
#define ENGINE_WARNING_H
struct SWarning
{
SWarning() = default;
SWarning(const char *pMsg);
SWarning(const char *pTitle, const char *pMsg);
char m_aWarningTitle[128];
char m_aWarningMsg[256];
bool m_WasShown = false;
bool m_AutoHide = true;
};
#endif