GodotComponentTest/tests/Tests.cs

9 lines
201 B
C#
Raw Normal View History

2022-12-02 21:09:40 +01:00
using System.Reflection;
using Godot;
using GoDotTest;
public class Tests : Control
{
public override async void _Ready()
=> await GoTest.RunTests(Assembly.GetExecutingAssembly(), this);
}