1
This commit is contained in:
parent
7aedde8bde
commit
57f64ae48a
@ -1,6 +1,7 @@
|
|||||||
#include "precompile.h"
|
#include "precompile.h"
|
||||||
|
|
||||||
#include "killmgr.h"
|
#include "killmgr.h"
|
||||||
|
#include "human.h"
|
||||||
|
|
||||||
void KillMgr::Init()
|
void KillMgr::Init()
|
||||||
{
|
{
|
||||||
@ -11,3 +12,8 @@ void KillMgr::UnInit()
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void KillMgr::OnHumanDead(Human* dead_hum, KillInfo* info)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -10,6 +10,7 @@ struct KillInfo
|
|||||||
std::string msg;
|
std::string msg;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class Human;
|
||||||
class KillMgr : public a8::Singleton<KillMgr>
|
class KillMgr : public a8::Singleton<KillMgr>
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -21,4 +22,5 @@ class KillMgr : public a8::Singleton<KillMgr>
|
|||||||
|
|
||||||
void Init();
|
void Init();
|
||||||
void UnInit();
|
void UnInit();
|
||||||
|
void OnHumanDead(Human* dead_hum, KillInfo* info);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user