Initial commit

This commit is contained in:
Ignacio Etcheverry
2020-05-09 16:15:18 +02:00
commit 94e3f57d7a
33 changed files with 2176 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
namespace GodotDebugSession
{
static class Program
{
static void Main()
{
try
{
Logger.Log("GodotDebugSession: Starting debug session...");
new GodotDebugSession()
.Start(Console.OpenStandardInput(), Console.OpenStandardOutput())
.Wait();
Logger.Log("GodotDebugSession: Debug session terminated.");
}
catch (Exception ex)
{
Logger.LogError(ex);
}
}
}
}