RJW-Sexperience/Source/RJWSexperience/Settings/IResettable.cs

7 lines
92 B
C#
Raw Normal View History

2022-05-06 14:30:26 +00:00
namespace RJWSexperience.Settings
{
2023-03-24 15:22:54 +00:00
public interface IResettable
2022-05-06 14:30:26 +00:00
{
void Reset();
}
}