chore: cleanup

This commit is contained in:
redglow
2026-07-29 11:05:27 +02:00
parent 2c0a3f47a4
commit 5c4519ed26
20 changed files with 110 additions and 70 deletions
+4 -2
View File
@@ -1,10 +1,12 @@
using JetBrains.Annotations;
using OwofGames.GodotLume;
namespace GodotHostTest.AetherBind;
public static class BuilderExtensions
{
public static Builder AddValueProvider<TValueType, TSourceScope, TDestinationScope>(this Builder builder)
public static Builder AddValueProvider<TValueType, [MeansImplicitUse] TSourceScope,
[MeansImplicitUse] TDestinationScope>(this Builder builder)
where TValueType : class
where TSourceScope : RootScope
where TDestinationScope : TSourceScope
@@ -22,7 +24,7 @@ public static class BuilderExtensions
provider => provider.Get<IValueGetter<TValueType>>().Value);
}
public static Builder AddValueProvider<TValueType, TScope>(this Builder builder)
public static Builder AddValueProvider<TValueType, [MeansImplicitUse] TScope>(this Builder builder)
where TValueType : class
where TScope : RootScope
{