Even more DotNet stuff, help

This commit is contained in:
Simon Lübeß
2022-04-26 22:36:27 +02:00
parent ad1b37dc64
commit 8c53f21690
14 changed files with 821 additions and 63 deletions
@@ -0,0 +1,13 @@
using System.Diagnostics;
namespace DotNetScriptingHelper;
public class TestEntityScript : ScriptableEntity
{
public int Inty = 1337;
protected override void OnUpdate()
{
Debug.WriteLine($"My Number is {Inty++}");
}
}