1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.VisualScripting/Events/VisualScriptNodeIsSelectedChangedEventArgs.cs

25 lines
547 B
C#

using System;
namespace Artemis.VisualScripting.Events
{
public class VisualScriptNodeIsSelectedChangedEventArgs : EventArgs
{
#region Properties & Fields
public bool IsSelected { get; }
public bool AlterSelection { get; }
#endregion
#region Constructors
public VisualScriptNodeIsSelectedChangedEventArgs(bool isSelected, bool alterSelection)
{
this.IsSelected = isSelected;
this.AlterSelection = alterSelection;
}
#endregion
}
}