コード例 #1
0
ファイル: Segway.cs プロジェクト: lulzzz/3DpointCloud
        private void HandleShutdown(BinaryReader br)
        {
            RMPShutdownMsg msg = new RMPShutdownMsg(br);

            if (Shutdown != null)
            {
                Shutdown(this, null);
            }
        }
コード例 #2
0
ファイル: Pioneer.cs プロジェクト: iamchucky/3DpointCloud
 private void HandleShutdown(BinaryReader br)
 {
     RMPShutdownMsg msg = new RMPShutdownMsg(br);
     if (Shutdown != null) Shutdown(this, null);
 }