コード例 #1
0
ファイル: Wander.cs プロジェクト: peterdrougge/.NET-SDK
 public void LoadRobotConnection(IRobotMessenger robotInterface)
 {
     _misty = robotInterface;
     _currentObstacleState = new CurrentObstacleState();
     _misty.RegisterForSDKLogEvents(PrintMessage);
 }
コード例 #2
0
ファイル: BaseDrive.cs プロジェクト: peterdrougge/.NET-SDK
 public BaseDrive(IRobotMessenger robot, CurrentObstacleState currentObstacleState, bool debugMode)
 {
     _misty = robot;
     _currentObstacleState = currentObstacleState;
     _debugMode            = debugMode;
 }