Unverified Commit 92f5de5c authored by Juon Kawakami's avatar Juon Kawakami 🥗
Browse files

init

parent a2a7748c
syntax = "proto3";
import "RCRSProto.proto";
option java_package = "rescuecore2.messages.protobuf";
option java_outer_classname = "RCRSLogProto";
message LogProto {
oneof log {
StartLogProto start = 1;
InitialConditionsLogProto initialCondition = 2;
CommandLogProto command = 3;
PerceptionLogProto perception = 4;
ConfigLogProto config = 5;
UpdatesLogProto update = 6;
EndLogProto end = 7;
}
};
message StartLogProto {
};
message InitialConditionsLogProto {
repeated EntityProto entities = 1;
};
message CommandLogProto {
int32 time = 1;
repeated MessageProto commands = 2;
};
message PerceptionLogProto {
int32 time = 1;
int32 entityID = 2;
ChangeSetProto visible = 3;
repeated MessageProto communications = 4;
};
message ConfigLogProto {
ConfigProto config = 1;
}
message UpdatesLogProto {
int32 time = 1;
ChangeSetProto changes = 2;
};
message EndLogProto {
};
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment