DDraceNetwork Docs
notifications.h
Go to the documentation of this file.
1#ifndef ENGINE_CLIENT_NOTIFICATIONS_H
2#define ENGINE_CLIENT_NOTIFICATIONS_H
3
5
7{
8public:
9 void Init(const char *pAppname) override;
10 void Shutdown() override;
11 void Notify(const char *pTitle, const char *pMessage) override;
12};
13
14#endif // ENGINE_CLIENT_NOTIFICATIONS_H
Definition: notifications.h:7
void Init(const char *pAppname) override
Definition: notifications.cpp:13
void Notify(const char *pTitle, const char *pMessage) override
Definition: notifications.cpp:27
void Shutdown() override
Definition: notifications.cpp:20
Definition: notifications.h:7