oniksan/godobuf

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

zcCarl opened this issue · 1 comments

zcCarl commented
#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;
}

Please clarify your question, I don't understand