1#ifndef ENGINE_CLIENT_NOTIFICATIONS_H
2#define ENGINE_CLIENT_NOTIFICATIONS_H
3
4#include <engine/notifications.h>
5
6class CNotifications : public INotifications
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
15