AdvancedLauncher.Management.ConfigurationManager.GetImportPath C# (CSharp) Method

GetImportPath() public method

public GetImportPath ( GameModel model ) : string
model AdvancedLauncher.SDK.Model.Config.GameModel
return string
        public string GetImportPath(GameModel model)
        {
            if (model == null) {
                throw new ArgumentException("model argument cannot be null");
            }
            string path = GetGamePath(model);
            if (string.IsNullOrEmpty(path)) {
                return null;
            }
            return Path.Combine(path, puImportDir);
        }