using System;
using RGB.NET.Core;
namespace Artemis.Core;
///
/// Provides data about frame rendering related events
///
public class FrameRenderedEventArgs : EventArgs
{
internal FrameRenderedEventArgs(SKTexture texture, RGBSurface rgbSurface)
{
Texture = texture;
RgbSurface = rgbSurface;
}
///
/// Gets the texture used to render this frame
///
public SKTexture Texture { get; }
///
/// Gets the RGB surface used to render this frame
///
public RGBSurface RgbSurface { get; }
}