Added logger

This commit is contained in:
Simon Lübeß
2020-11-05 22:20:09 +01:00
parent bf796a2a25
commit 0cf3f5f572
12 changed files with 321 additions and 8 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
FileVersion = 1
Dependencies = {corlib = "*", GlitchyEngine = "*"}
Dependencies = {GlitchyEngine = "*", corlib = "*"}
[Project]
Name = "Sandbox"
+4
View File
@@ -1,5 +1,7 @@
using System;
using GlitchyEngine;
using System.Diagnostics;
using GlitchLog;
namespace Sandbox
{
@@ -8,6 +10,8 @@ namespace Sandbox
[Export, LinkName("CreateApplication")]
public static Application CreateApplication()
{
return new SandboxApp();
}
}