feat: aetherbind, first source generator

This commit is contained in:
redglow
2026-07-18 17:05:03 +02:00
parent 4ce99d9486
commit aae9c083d9
69 changed files with 210 additions and 156 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using Godot;
using GodotHostTest.Interfaces;
namespace GodotHostTest.Game.Level;
[GlobalClass]
public partial class LevelData : Resource, ILevel
{
[Export] public double TimeBetweenSpawns;
TimeSpan ILevel.TimeBetweenSpawns => TimeSpan.FromSeconds(TimeBetweenSpawns);
}