proto文件更新

main
xiaohang 2023-09-13 17:58:39 +08:00
parent eaa61b38af
commit 43990d9c85
2 changed files with 5 additions and 1 deletions

View File

@ -198,6 +198,9 @@ namespace Dof
[global::ProtoBuf.ProtoMember(1, Name = @"level_resource")] [global::ProtoBuf.ProtoMember(1, Name = @"level_resource")]
public global::System.Collections.Generic.List<LevelResource> LevelResources { get; } = new global::System.Collections.Generic.List<LevelResource>(); public global::System.Collections.Generic.List<LevelResource> LevelResources { get; } = new global::System.Collections.Generic.List<LevelResource>();
[global::ProtoBuf.ProtoMember(2, Name = @"player_entered")]
public global::System.Collections.Generic.List<PlayerEnter> PlayerEntereds { get; } = new global::System.Collections.Generic.List<PlayerEnter>();
} }
[global::ProtoBuf.ProtoContract()] [global::ProtoBuf.ProtoContract()]

View File

@ -46,6 +46,7 @@ message PlayerEntered {
message GameStart { message GameStart {
repeated LevelResource level_resource = 1; repeated LevelResource level_resource = 1;
repeated PlayerEnter player_entered = 2;
} }
message LevelPrepared { message LevelPrepared {
@ -83,4 +84,4 @@ message GameFinish {
message PlayerLeave { message PlayerLeave {
int64 cid = 1; int64 cid = 1;
} }