#ifndef ENGINE_CLIENT_NOTIFICATIONS_H #define ENGINE_CLIENT_NOTIFICATIONS_H #include class CNotifications : public INotifications { public: void Init(const char *pAppname) override; void Shutdown() override; void Notify(const char *pTitle, const char *pMessage) override; }; #endif // ENGINE_CLIENT_NOTIFICATIONS_H