Implement dungeon entry

This commit is contained in:
Melledy
2022-04-28 08:20:37 -07:00
parent 472e771dc8
commit 17addc1522
19 changed files with 318 additions and 48 deletions

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message PlayerEnterDungeonRsp {
int32 retcode = 1;
uint32 point_id = 2;
uint32 dungeon_id = 3;
}