mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Profiling - Thread safety and use high precision counters Profiling - Profile timed updates Timed updates - Added argument to give timed updates a name Plugins - Affix plugin folders with a part of the plugin GUID Debugger - Added 95th percentile column to profiling Debugger - Fix scrolling in performance profile tab when hovering over datagrids
13 lines
298 B
C#
13 lines
298 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Artemis.Core
|
|
{
|
|
/// <summary>
|
|
/// Represents an feature of a certain type provided by a plugin with support for data models
|
|
/// </summary>
|
|
public abstract class DataModelPluginFeature : PluginFeature
|
|
{
|
|
|
|
}
|
|
} |