rename IChildSettings to ISettingsNode & update Settings.Get<T>()

This commit is contained in:
Pilzinsel64
2025-07-10 06:31:43 +02:00
parent bdeb098dc4
commit 542467ccea
4 changed files with 43 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace Pilz.Configuration;
public interface ISettingsNode
{
void Reset();
}
[Obsolete("Use ISettingsNode instead!")]
public interface IChildSettings : ISettingsNode;