mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 03:58:18 +00:00
11 lines
167 B
C++
11 lines
167 B
C++
#ifndef NOTIFICATION_H
|
|
#define NOTIFICATION_H
|
|
|
|
class CNotification
|
|
{
|
|
public:
|
|
static void notify(const char *pTitle, const char *pMsg);
|
|
};
|
|
|
|
#endif // NOTIFICATION_H
|