mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
20 lines
504 B
C#
20 lines
504 B
C#
using System;
|
|
|
|
namespace Artemis.Core
|
|
{
|
|
/// <summary>
|
|
/// Provides data about surface configuration related events
|
|
/// </summary>
|
|
public class SurfaceConfigurationEventArgs : EventArgs
|
|
{
|
|
internal SurfaceConfigurationEventArgs(ArtemisSurface surface)
|
|
{
|
|
Surface = surface;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the active surface at the time the event fired
|
|
/// </summary>
|
|
public ArtemisSurface Surface { get; }
|
|
}
|
|
} |