mirror of https://github.com/hykilpikonna/AquaDX
8 lines
194 B
C#
8 lines
194 B
C#
![]() |
namespace AquaMai.Config.Interfaces;
|
||
|
|
||
|
public interface IConfigParser
|
||
|
{
|
||
|
public void Parse(IConfig config, string tomlString);
|
||
|
public void Parse(IConfig config, IConfigView configView);
|
||
|
}
|