2022-9-2 01:27:03
This commit is contained in:
28
src/dispatch.h
Normal file
28
src/dispatch.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#pragma once
|
||||
#ifndef __DISPATCH_H__
|
||||
#define __DISPATCH_H__
|
||||
#include "import.h"
|
||||
#include "inline_hook.h"
|
||||
#include "Singleton.h"
|
||||
#include "sdk_class.h"
|
||||
#include "utils.h"
|
||||
|
||||
class CDispatch
|
||||
{
|
||||
public:
|
||||
SINGLETON_DEFINE_S(CDispatch);
|
||||
CDispatch();
|
||||
~CDispatch();
|
||||
public:
|
||||
int UseEquipmentMoveItem(CUser* user, PacketBuf* pBuf);
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif // __DISPATCH_H__
|
||||
|
||||
Reference in New Issue
Block a user