ddnet/src/engine/client/notifications.h

15 lines
346 B
C
Raw Normal View History

#ifndef ENGINE_CLIENT_NOTIFICATIONS_H
#define ENGINE_CLIENT_NOTIFICATIONS_H
#include <engine/notifications.h>
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