implemented boolean values parsing

This commit is contained in:
2025-04-10 16:22:21 +05:00
parent 74d09c51a0
commit c4af1f31e8
3 changed files with 29 additions and 17 deletions
@@ -3,11 +3,12 @@ option csharp_namespace = "ParadoxSaveParser.WebAPI.MyProtobuf";
message Item {
oneof value {
int64 i64 = 1;
double f64 = 2;
string str = 3;
ItemList list = 4;
ItemListMap map = 5;
bool b = 1;
int64 i64 = 2;
double f64 = 3;
string str = 4;
ItemList list = 5;
ItemListMap map = 6;
}
}