mirror of
https://github.com/BotChain-Robots/flatbuffers.git
synced 2026-07-08 09:37:21 +02:00
19 lines
332 B
Plaintext
19 lines
332 B
Plaintext
include "../RobotModule.fbs";
|
|
|
|
namespace Frontend;
|
|
|
|
table ModuleConnection {
|
|
from_module_id: uint8;
|
|
to_module_id: uint8;
|
|
from_socket: uint8;
|
|
to_socket: uint8;
|
|
orientation: Orientation;
|
|
}
|
|
|
|
table RobotConfiguration{
|
|
modules: [RobotModule];
|
|
connections: [ModuleConnection];
|
|
}
|
|
|
|
root_type RobotConfiguration;
|