mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-11 18:51:16 +00:00
Create basic MxNotificationManager class
This commit is contained in:
parent
d336f65abe
commit
ffad86bda5
@ -19,6 +19,12 @@ long MxCore::Notify(MxParam &p)
|
||||
return 0;
|
||||
}
|
||||
|
||||
// FIXME: based on another call, this might be an integer (100edf3c), or whatever undefined4 is
|
||||
long MxCore::NotificationManager()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
long MxCore::Tickle()
|
||||
{
|
||||
return 0;
|
||||
|
||||
15
LEGO1/mxnotificationmanager.h
Normal file
15
LEGO1/mxnotificationmanager.h
Normal file
@ -0,0 +1,15 @@
|
||||
#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
|
||||
Loading…
Reference in New Issue
Block a user