forked from ketoo/NoahGameFrame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloWorld2.h
More file actions
39 lines (28 loc) · 973 Bytes
/
HelloWorld2.h
File metadata and controls
39 lines (28 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// -------------------------------------------------------------------------
// @FileName : HelloWorld2.h
// @Author : LvSheng.Huang
// @Date : 2014-05-14 08:51
// @Module : HelloWorld2
//
// -------------------------------------------------------------------------
#ifndef NFC_HELLO_WORLD2_H
#define NFC_HELLO_WORLD2_H
#include "NFComm/NFPluginModule/NFIPlugin.h"
#include "NFComm/NFPluginModule/NFIPluginManager.h"
class HelloWorld2
: public NFIModule
{
public:
HelloWorld2(NFIPluginManager* p)
{
pPluginManager = p;
}
virtual bool Init();
virtual bool AfterInit();
virtual bool Execute();
virtual bool BeforeShut();
virtual bool Shut();
protected:
int OnPropertyCallBackEvent(const NFGUID& self, const std::string& strProperty, const NFIDataList::TData& oldVarList, const NFIDataList::TData& newVarList);
};
#endif