15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
|
import * as $protobuf from "protobufjs";
|
||
|
import Long = require("long");
|
||
|
/** ServiceTypeId enum. */
|
||
|
export enum ServiceTypeId {
|
||
|
STI_Unknown = 0,
|
||
|
STI_Login = 10000,
|
||
|
STI_Chat = 10005,
|
||
|
STI_Match = 10010,
|
||
|
STI_Lobby = 10015,
|
||
|
STI_Admin = 10020,
|
||
|
STI_Gate = 20000,
|
||
|
STI_ColorGame = 20005,
|
||
|
STI_DB = 30000
|
||
|
}
|