map/das-dn/inc/soe.h

25 lines
551 B
C
Raw Normal View History

2024-07-08 10:27:17 +08:00
#ifndef _ZJD_SOE_H__
#define _ZJD_SOE_H__
#include "public.h"
class CSOE
{
private:
struSOE m_soes[DATABASE_SOE_NUM];
int m_save;
int m_load;
public:
CSOE();
virtual ~CSOE();
void PushSOE(unionCP56Time& st, int order, BOOLEAN value, BYTE qds, int uid, int point);
void DumpSOE(void);
BOOLEAN GetSOE(LONG& pos, unionCP56Time& st, int& order, BOOLEAN& value, BYTE& qds);
BOOLEAN GetSOE(LONG& pos, unionCP56Time& st, int& order, BOOLEAN& value, BYTE& qds, int& uid, int& point);
};
#endif //_ZJD_SOE_H__