DragonNest/GameCommon/PvPRespawnModeScoreSystem.h
2024-12-19 09:48:26 +08:00

14 lines
325 B
C++

#pragma once
#include "PvPGameModeScoreSystem.h"
class CPvPRespawnModeScoreSystem:public IPVPGameModeScoreSystem,public TBoostMemoryPool<CPvPRespawnModeScoreSystem>
{
public:
CPvPRespawnModeScoreSystem(){}
virtual ~CPvPRespawnModeScoreSystem(){}
virtual void OnDie( DnActorHandle hActor, DnActorHandle hHitter );
};