mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 06:55:06 +01:00
20 lines
452 B
Protocol Buffer
20 lines
452 B
Protocol Buffer
syntax = "proto3";
|
|
package proto;
|
|
|
|
option go_package = "/csproto";
|
|
|
|
enum TD_SETTLEMENT_TYPE {
|
|
TD_Settlement_None = 0;
|
|
TD_Settlement_Passed = 1;
|
|
TD_Settlement_Leave = 2;
|
|
TD_Settlement_Defeat = 3;
|
|
}
|
|
message SC_SYNC_TD_SETTLEMENT {
|
|
string td_id = 1;
|
|
TD_SETTLEMENT_TYPE settlement_type = 2;
|
|
string reward_id = 3;
|
|
int32 extra_bandwidth = 4;
|
|
int32 extra_battle_building_limit = 5;
|
|
int32 extra_travel_pole_limit = 6;
|
|
}
|