mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
12 lines
194 B
C#
12 lines
194 B
C#
using System;
|
|
|
|
namespace RGB.NET.Core;
|
|
|
|
public sealed class ActionDisposable(Action onDispose) : IDisposable
|
|
{
|
|
#region Methods
|
|
|
|
public void Dispose() => onDispose();
|
|
|
|
#endregion
|
|
} |