OrangeGuidanceTomestone/client/Util/OnDispose.cs

20 lines
378 B
C#
Raw Normal View History

2024-06-16 19:28:34 +00:00
namespace OrangeGuidanceTomestone.Util;
internal class OnDispose : IDisposable {
private bool _disposed;
private readonly Action _action;
internal OnDispose(Action action) {
this._action = action;
}
public void Dispose() {
if (this._disposed) {
return;
}
this._disposed = true;
this._action();
}
}