Added custom UIX debug bridge

This commit is contained in:
Yoshi Askharoun
2022-06-07 01:00:15 -05:00
parent 0999ee69bb
commit 61eef6ff9a
10 changed files with 228 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
using Microsoft.Iris.Debug;
namespace SimpleDebugClient
{
internal class Program
{
static void Main(string[] args)
{
Bridge bridge = new(OwlCore.Remoting.RemotingMode.Client);
while (true) ;
}
}
}