mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
.
This commit is contained in:
parent
791ae89a80
commit
8e717da1c3
@ -1,16 +0,0 @@
|
||||
using Artemis.Managers;
|
||||
using Artemis.Models;
|
||||
using Artemis.Modules.Effects.ProfilePreview;
|
||||
using Artemis.ViewModels.Abstract;
|
||||
using Ninject;
|
||||
|
||||
namespace Artemis.Modules.Effects.AudioVisualizer
|
||||
{
|
||||
public sealed class AudioVisualizerViewModel : EffectViewModel
|
||||
{
|
||||
public AudioVisualizerViewModel(MainManager main, [Named("ProfilePreviewModel")] EffectModel model) : base(main, model)
|
||||
{
|
||||
DisplayName = "Audio Visualization / Key waves";
|
||||
}
|
||||
}
|
||||
}
|
||||
17
Artemis/Artemis/Modules/Games/LightFx/LightFxViewModel.cs
Normal file
17
Artemis/Artemis/Modules/Games/LightFx/LightFxViewModel.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using Artemis.Managers;
|
||||
using Artemis.Modules.Abstract;
|
||||
using Ninject;
|
||||
|
||||
namespace Artemis.Modules.Games.LightFx
|
||||
{
|
||||
public sealed class LightFxViewModel : ModuleViewModel
|
||||
{
|
||||
public LightFxViewModel(MainManager mainManager, [Named(nameof(LightFxModel))] ModuleModel moduleModel,
|
||||
IKernel kernel) : base(mainManager, moduleModel, kernel)
|
||||
{
|
||||
DisplayName = "Light FX";
|
||||
}
|
||||
|
||||
public override bool UsesProfileEditor => true;
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user