mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
28 lines
756 B
C#
28 lines
756 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Build.Windows {
|
|
public class DebugConnectorSerial : DebugConnector {
|
|
protected override void SendData(byte[] aBytes)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override void Next(int aPacketSize, Action<byte[]> aCompleted)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override void PacketText(byte[] aPacket)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override void PacketTracePoint(byte[] aPacket)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|