mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
Add EntityConfigHashEntry
this might come in handy sometime in future.
This commit is contained in:
parent
a82bdad7b3
commit
90cb16acdb
@ -2,8 +2,6 @@ syntax = "proto3";
|
|||||||
|
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import "Vector.proto";
|
import "Vector.proto";
|
||||||
|
|
||||||
message EntityClientExtraInfo {
|
message EntityClientExtraInfo {
|
||||||
|
9
proto/EntityConfigHashEntry.proto
Normal file
9
proto/EntityConfigHashEntry.proto
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message EntityConfigHashEntry {
|
||||||
|
uint32 entityId = 3;
|
||||||
|
uint32 jobId = 12;
|
||||||
|
int32 hashValue = 6;
|
||||||
|
}
|
11
proto/EntityConfigHashNotify.proto
Normal file
11
proto/EntityConfigHashNotify.proto
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
import "EntityConfigHashEntry.proto";
|
||||||
|
|
||||||
|
message EntityConfigHashNotify {
|
||||||
|
repeated EntityConfigHashEntry avatarEntryList = 12;
|
||||||
|
repeated EntityConfigHashEntry abilityEntryList = 7;
|
||||||
|
repeated EntityConfigHashEntry combatEntryList = 1;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user