mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 03:01:17 +00:00
16 lines
397 B
C++
16 lines
397 B
C++
#ifdef MXNOTIFICATIONMANAGER_H
|
|
#define MXNOTIFICATIONMANAGER_H
|
|
|
|
// looks like tickle, only defined then used in its definition and never again
|
|
class MxNotificationManager : public MxCore
|
|
{
|
|
public:
|
|
virtual ~MxNotificationManager();
|
|
|
|
virtual long NotificationManager();
|
|
virtual const char* GetClassName() const;
|
|
virtual MxBool IsClass(const char* name) const;
|
|
};
|
|
|
|
#endif MXNOTIFICATIONMANAGER_H
|