Nerd_STF/Nerd_STF/Abstract/IModifiable.cs

11 lines
186 B
C#

using System;
namespace Nerd_STF.Abstract
{
public interface IModifiable<TSelf>
where TSelf : IModifiable<TSelf>
{
void Modify(Action<TSelf> action);
}
}