mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Even more DotNet stuff, help
This commit is contained in:
@@ -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++}");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user