mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
16 lines
327 B
C#
16 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Launch.Slave {
|
|
public class DebugHost : Cosmos.Launch.Common.DebugHost {
|
|
public DebugHost(string[] aArgs)
|
|
: base(aArgs) {
|
|
}
|
|
|
|
protected override int Run() {
|
|
return 0;
|
|
}
|
|
}
|
|
}
|