Detects assembly references and determines loading order automatically.

This commit is contained in:
2023-03-18 13:46:13 +08:00
parent ed2c216cf4
commit 0e4445e52b
7 changed files with 192 additions and 66 deletions

View File

@@ -28,8 +28,8 @@ namespace Cryville.Common.Unity {
set { m_filter = value; }
}
public Dictionary<string, string> m_presetPaths = new Dictionary<string, string>();
public Dictionary<string, string> PresetPaths {
public IReadOnlyDictionary<string, string> m_presetPaths = new Dictionary<string, string>();
public IReadOnlyDictionary<string, string> PresetPaths {
get { return m_presetPaths; }
set { m_presetPaths = value; }
}