move proto to submodule

This commit is contained in:
wetabq
2022-04-25 16:17:42 +08:00
parent 7f5e053290
commit 1bdec08806
439 changed files with 5371 additions and 2625 deletions

12
proto/GachaItem.proto Normal file → Executable file
View File

@@ -2,13 +2,13 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "GachaTransferItem.proto";
import "ItemParam.proto";
import "GachaTransferItem.proto";
message GachaItem {
ItemParam gachaItem = 1;
repeated GachaTransferItem transferItems = 2;
bool isFlashCard = 3;
bool isGachaItemNew = 4;
repeated ItemParam tokenItemList = 5;
ItemParam gacha_item_ = 1;
repeated GachaTransferItem transfer_items = 2;
bool is_flash_card = 3;
bool is_gacha_item_new = 4;
repeated ItemParam token_item_list = 5;
}