oniksan / godobuf

A Google Protobuf implementation for Godot / GDScript
BSD 3-Clause "New" or "Revised" License
260 stars 36 forks source link

my godot is v4.0.3 why this code is different from readme #32

Open zcCarl opened 1 year ago

zcCarl commented 1 year ago
#wrong photo
syntax = "proto3";
message A {
    B f1 = 1;
}
message B {
       string f1 = 1 ;
}
#Right photo
message A {
        message B {
               string f1 = 1;
        }
    B f1 = 1;
}
oniksan commented 1 year ago

Please clarify your question, I don't understand