Nilton Constantino 73a23861a4
add traits
2026-06-12 15:47:20 +01:00

8 lines
211 B
C#

namespace Intrepid.Utilities.Structures.Traits
{
public interface IMutableTraits<in T> where T : ITrait
{
void Declare<TT>(TT trait) where TT : T;
bool Discard<TT>() where TT : T;
}
}