DESKTOP-5RP3AKU\Jisol 0014eff5e0 update
2023-11-05 03:26:09 +08:00

15 lines
195 B
C++

#pragma once
#include "ByteBuf.h"
namespace luban
{
class CfgBean
{
public:
virtual int getTypeId() const = 0;
virtual bool deserialize(ByteBuf& buf) = 0;
};
}