c7d90ff1ab
- .vimrc added to reflect settings used in the project
15 lines
187 B
Protocol Buffer
15 lines
187 B
Protocol Buffer
import "protocol.proto";
|
|
|
|
package OstProto;
|
|
|
|
// Sample Protocol
|
|
message UserScript {
|
|
|
|
optional string program = 1;
|
|
|
|
}
|
|
|
|
extend Protocol {
|
|
optional UserScript userScript = 54;
|
|
}
|