Files
2025-11-30 08:35:03 +02:00

8 lines
162 B
C#

namespace Needle.Engine
{
public interface IBuildConfigProperty
{
string Key { get; }
object GetValue(string projectDirectory);
}
}