mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
15 lines
195 B
C
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;
|
||
|
};
|
||
|
}
|