mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
17 lines
427 B
C#
17 lines
427 B
C#
using Artemis.Core.Plugins.Models;
|
|
|
|
namespace Artemis.Core.Plugins.Abstract
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Allows you to expand the application-wide datamodel
|
|
/// </summary>
|
|
public abstract class DataModelExpansion : Plugin
|
|
{
|
|
protected DataModelExpansion(PluginInfo pluginInfo) : base(pluginInfo)
|
|
{
|
|
}
|
|
|
|
public abstract void Update(double deltaTime);
|
|
}
|
|
} |