8 lines
156 B
Protocol Buffer
8 lines
156 B
Protocol Buffer
syntax = "proto3";
|
|
option csharp_namespace = "FurinaImpact.Protocol";
|
|
message AbilityString {
|
|
oneof type {
|
|
string str = 1;
|
|
uint32 hash = 2;
|
|
}
|
|
}
|