using System;
namespace Artemis.Core
{
///
/// Provides data about surface configuration related events
///
public class SurfaceConfigurationEventArgs : EventArgs
{
internal SurfaceConfigurationEventArgs(ArtemisSurface surface)
{
Surface = surface;
}
///
/// Gets the active surface at the time the event fired
///
public ArtemisSurface Surface { get; }
}
}