forgot to build this

This commit is contained in:
Soph :3 2024-07-17 15:39:31 +03:00
parent dc6ab123b7
commit 3381420a82
Signed by: sophie
GPG key ID: EDA5D222A0C270F2

View file

@ -75,6 +75,11 @@ export class ClientMessage extends Message<ClientMessage> {
*/
ban?: ClientMessage_Ban;
/**
* @generated from field: string owner = 15;
*/
owner = "";
constructor(data?: PartialMessage<ClientMessage>) {
super();
proto3.util.initPartial(data, this);
@ -96,6 +101,7 @@ export class ClientMessage extends Message<ClientMessage> {
{ no: 12, name: "sustain", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
{ no: 13, name: "heartbeat", kind: "message", T: ClientMessage_Heartbeat },
{ no: 14, name: "ban", kind: "message", T: ClientMessage_Ban },
{ no: 15, name: "owner", kind: "scalar", T: 9 /* ScalarType.STRING */ },
]);
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClientMessage {
@ -183,6 +189,11 @@ export enum ClientMessage_EventType {
* @generated from enum value: BAN = 12;
*/
BAN = 12,
/**
* @generated from enum value: OWNER = 13;
*/
OWNER = 13,
}
// Retrieve enum metadata with: proto3.getEnumType(ClientMessage_EventType)
proto3.util.setEnumType(ClientMessage_EventType, "pianoverse.ClientMessage.EventType", [
@ -199,6 +210,7 @@ proto3.util.setEnumType(ClientMessage_EventType, "pianoverse.ClientMessage.Event
{ no: 10, name: "SUSTAIN" },
{ no: 11, name: "HEARTBEAT" },
{ no: 12, name: "BAN" },
{ no: 13, name: "OWNER" },
]);
/**
@ -939,6 +951,11 @@ export class Move extends Message<Move> {
* @generated from message pianoverse.Press
*/
export class Press extends Message<Press> {
/**
* @generated from field: string id = 1;
*/
id = "";
/**
* @generated from field: uint32 key = 2;
*/
@ -957,6 +974,7 @@ export class Press extends Message<Press> {
static readonly runtime: typeof proto3 = proto3;
static readonly typeName = "pianoverse.Press";
static readonly fields: FieldList = proto3.util.newFieldList(() => [
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 2, name: "key", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
{ no: 3, name: "vel", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
]);