mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
14 lines
248 B
C#
14 lines
248 B
C#
using System.Diagnostics;
|
|
|
|
namespace DotNetScriptingHelper;
|
|
|
|
public class TestEntityScript : ScriptableEntity
|
|
{
|
|
public int Inty = 1337;
|
|
|
|
protected override void OnUpdate()
|
|
{
|
|
Debug.WriteLine($"My Number is {Inty++}");
|
|
}
|
|
}
|