mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
7 lines
135 B
C++
7 lines
135 B
C++
|
#include "ByteBuf.h"
|
||
|
|
||
|
namespace luban
|
||
|
{
|
||
|
const int ByteBuf::INIT_CAPACITY = 16;
|
||
|
const byte ByteBuf::EMPTY_BYTES[1] = { '\0' };
|
||
|
}
|