mirror of
https://github.com/djhackersdev/minime.git
synced 2026-07-03 16:50:49 -05:00
13 lines
353 B
TypeScript
13 lines
353 B
TypeScript
import { UpdateTeamPointsRequest } from "../request/updateTeamPoints";
|
|
|
|
updateTeamPoints.msgCode = 0x0081;
|
|
updateTeamPoints.msgLen = 0x0010;
|
|
|
|
export function updateTeamPoints(buf: Buffer): UpdateTeamPointsRequest {
|
|
return {
|
|
type: "update_team_points_req",
|
|
field_0004: buf.readUInt32LE(0x0004),
|
|
field_0008: buf.readUInt32LE(0x0008),
|
|
};
|
|
}
|