minime/src/idz/userdb/encoder/saveTopic.ts
2020-09-01 01:10:31 +00:00

10 lines
202 B
TypeScript

import { SaveTopicResponse } from "../response/saveTopic";
export function saveTopic(res: SaveTopicResponse) {
const buf = Buffer.alloc(0x05d0);
buf.writeInt16LE(0x009b, 0x0000);
return buf;
}