Example #1
0
 internal RobotAudio(RobotConnection connection) : base(connection)
 {
 }
Example #2
0
 internal RobotModule(RobotConnection connection)
 {
     //set fields
     Connection = connection;
     _mapper    = new EntityMapper();
 }
Example #3
0
 internal RobotCamera(RobotConnection connection) : base(connection)
 {
 }
Example #4
0
 internal RobotScreen(RobotConnection connection) : base(connection)
 {
 }
Example #5
0
 internal RobotMotors(RobotConnection connection, Robot robot) : base(connection)
 {
     //set fields
     _robot = robot;
 }
Example #6
0
 internal RobotAnimation(RobotConnection connection) : base(connection)
 {
 }