Skip to content

Commit

Permalink
Add L-Var support #218
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenquyhy committed Mar 20, 2023
1 parent 78503ab commit 7dc2138
Show file tree
Hide file tree
Showing 29 changed files with 2,597 additions and 3,023 deletions.
5 changes: 2 additions & 3 deletions FlightStreamDeck.AddOn/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using FlightStreamDeck.Core;
using FlightStreamDeck.Logics;
using FlightStreamDeck.Logics;
using FlightStreamDeck.Logics.Actions;
using FlightStreamDeck.SimConnectFSX;
using Microsoft.AppCenter;
Expand Down Expand Up @@ -109,9 +108,9 @@ private void ConfigureServices(ServiceCollection services)
services.AddTransient(typeof(MainWindow));
services.AddSingleton<IImageLogic, ImageLogic>();
services.AddTransient<IEvaluator, ComparisonEvaluator>();
services.AddTransient<EnumConverter>();

services.AddSingleton<SimEventManager>();
services.AddSingleton<SimVarManager>();
services.AddTransient<IEventRegistrar>(services => services.GetRequiredService<SimEventManager>());
services.AddTransient<IEventDispatcher>(services => services.GetRequiredService<SimEventManager>());

Expand Down
35 changes: 0 additions & 35 deletions FlightStreamDeck.Core/EnumConverter.cs

This file was deleted.

453 changes: 0 additions & 453 deletions FlightStreamDeck.Core/EventValueLibrary.cs

This file was deleted.

Loading

0 comments on commit 7dc2138

Please sign in to comment.