mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 00:46:12 +02:00
- Add RenderQuality enum to the Plugin API
- Add `RenderQuality` property to the `Plugin` class - Set the render quality of the plugin image
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
using DesktopMagicPluginAPI.Inputs;
|
||||
using DesktopMagicPluginAPI.Drawing;
|
||||
using DesktopMagicPluginAPI.Inputs;
|
||||
|
||||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
@@ -35,6 +37,11 @@ namespace DesktopMagicPluginAPI
|
||||
/// </summary>
|
||||
public virtual int UpdateInterval { get; set; } = 1000;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the render quality of the bitmap image.
|
||||
/// </summary>
|
||||
public virtual RenderQuality RenderQuality { get; set; } = RenderQuality.High;
|
||||
|
||||
/// <summary>
|
||||
/// Occurs once when the pugin gets activated.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user