feat: hooking observability.

This commit is contained in:
redglow
2026-07-25 22:26:07 +02:00
parent bc7297c6bc
commit dad5027e0e
9 changed files with 93 additions and 1 deletions
+7
View File
@@ -3,6 +3,8 @@ using GodotHostTest.Game.Level;
using GodotHostTest.Game.Score;
using GodotHostTest.Game.Target;
using GodotHostTest.Interfaces;
using Microsoft.Extensions.DependencyInjection;
using OwofGames.AetherBind.Observability;
using OwofGames.GodotLume;
using RootServiceSource = GodotHostTest.AetherBind.RootServiceSource;
@@ -19,4 +21,9 @@ public partial class GameServiceSource : RootServiceSource
.AddSingleton<IScore, TotalScore>()
.AddLevelServices(_levelsData);
}
protected override void ConfigureServices(IServiceCollection serviceCollection)
{
serviceCollection.AddObservability();
}
}