This commit is contained in:
aozhiwei 2021-08-13 11:07:55 +00:00
parent 7aedde8bde
commit 57f64ae48a
2 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#include "precompile.h"
#include "killmgr.h"
#include "human.h"
void KillMgr::Init()
{
@ -11,3 +12,8 @@ void KillMgr::UnInit()
{
}
void KillMgr::OnHumanDead(Human* dead_hum, KillInfo* info)
{
}

View File

@ -10,6 +10,7 @@ struct KillInfo
std::string msg;
};
class Human;
class KillMgr : public a8::Singleton<KillMgr>
{
@ -21,4 +22,5 @@ class KillMgr : public a8::Singleton<KillMgr>
void Init();
void UnInit();
void OnHumanDead(Human* dead_hum, KillInfo* info);
};