mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
set package directories in constructor
This commit is contained in:
parent
12faf50c40
commit
50c5cf05f5
@ -72,7 +72,7 @@ namespace Bloxstrap
|
||||
private int _packagesExtracted = 0;
|
||||
private bool _cancelFired = false;
|
||||
|
||||
private IReadOnlyDictionary<string, string> _packageDirectories => _studioLaunch ? PackageMap.Studio : PackageMap.Player;
|
||||
private IReadOnlyDictionary<string, string> _packageDirectories;
|
||||
|
||||
public IBootstrapperDialog? Dialog = null;
|
||||
public bool IsStudioLaunch => _studioLaunch;
|
||||
@ -84,6 +84,8 @@ namespace Bloxstrap
|
||||
_launchCommandLine = launchCommandLine;
|
||||
_studioLaunch = studioLaunch;
|
||||
_studioAuth = studioAuth;
|
||||
|
||||
_packageDirectories = _studioLaunch ? PackageMap.Studio : PackageMap.Player;
|
||||
}
|
||||
|
||||
private void SetStatus(string message)
|
||||
|
Loading…
Reference in New Issue
Block a user