Start of test and benchmark

This commit is contained in:
Simon Lübeß
2025-08-11 22:09:54 +02:00
parent 4992511112
commit fca126c960
7 changed files with 942 additions and 5 deletions
@@ -0,0 +1,33 @@
using GlitchyEngine;
using GlitchyEngine.Math;
using System;
using System.Runtime.InteropServices;
using static GlitchyEngine.Math.Math;
namespace TestProject;
public class TestScript : Entity
{
/// <summary>
/// OnCreate is called once before the first call to OnUpdate.
/// </summary>
protected override void OnCreate()
{
}
/// <summary>
/// OnUpdate is called once every frame.
/// </summary>
protected override void OnUpdate(float deltaTime)
{
}
}
public static class Test
{
[UnmanagedCallersOnly]
public static void TestFunc()
{
}
}