Files
2022-10-26 12:25:11 +08:00

20 lines
413 B
C++

#pragma once
#include <scskillslot.h>
class SkillSlot : public SCSkillSlot
{
public:
SkillSlot(void);
virtual ~SkillSlot(void);
SkillSlot(const SKILLSTREAM & SkillStream);
virtual DBSERIAL GetSerial() const { return m_Serial; }
virtual VOID SetSerial( DBSERIAL serial ) { m_Serial = serial; }
virtual VOID Copy( SCSlot & IN slot );
virtual VOID Clear();
private:
DBSERIAL m_Serial;//<ÀÓ½Ã
};