11 lines
186 B
C#
11 lines
186 B
C#
using System;
|
|
|
|
namespace Nerd_STF.Abstract
|
|
{
|
|
public interface IModifiable<TSelf>
|
|
where TSelf : IModifiable<TSelf>
|
|
{
|
|
void Modify(Action<TSelf> action);
|
|
}
|
|
}
|