File size: 318 Bytes
05c9ac2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
syntax = "proto3";
import "mlagents_envs/communicator_objects/unity_message.proto";
option csharp_namespace = "Unity.MLAgents.CommunicatorObjects";
package communicator_objects;
service UnityToExternalProto {
// Sends the academy parameters
rpc Exchange(UnityMessageProto) returns (UnityMessageProto) {}
}
|