namespace Goap.Core { public interface IHasConfig where TConfig : IConfig { public TConfig Config { get; } public void SetConfig(TConfig config); } }