14 lines
680 B
C++
14 lines
680 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 );
|
||
};
|