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

13 lines
No EOL
223 B
C++

#pragma once
#include "DnDamageBase.h"
class MADamageBase : virtual public CDnDamageBase
{
public:
MADamageBase() { SetDamageObjectType( DamageObjectTypeEnum::Actor ); }
virtual ~MADamageBase() {}
protected:
public:
};