mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
506 B
C#
19 lines
506 B
C#
using System;
|
|
using System.Drawing;
|
|
using Artemis.Core.RGB.NET;
|
|
using RGB.NET.Core;
|
|
|
|
namespace Artemis.Core.Events
|
|
{
|
|
public class FrameRenderedEventArgs : EventArgs
|
|
{
|
|
public FrameRenderedEventArgs(GraphicsDecorator graphicsDecorator, RGBSurface rgbSurface)
|
|
{
|
|
GraphicsDecorator = graphicsDecorator;
|
|
RgbSurface = rgbSurface;
|
|
}
|
|
|
|
public GraphicsDecorator GraphicsDecorator { get; }
|
|
public RGBSurface RgbSurface { get; }
|
|
}
|
|
} |