Skip to content

Commit

Permalink
Update LifetimeScope.cs
Browse files Browse the repository at this point in the history
Make Create(IInstaller) public
  • Loading branch information
Geminior committed Oct 10, 2024
1 parent 31eb7b9 commit 2275257
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void IDisposable.Dispose()
static readonly Stack<IInstaller> GlobalExtraInstallers = new Stack<IInstaller>();
static readonly object SyncRoot = new object();

static LifetimeScope Create(IInstaller installer = null, string name = null)
public static LifetimeScope Create(IInstaller installer = null, string name = null)
{
var gameObject = new GameObject(name ?? "LifetimeScope");
gameObject.SetActive(false);
Expand Down

0 comments on commit 2275257

Please sign in to comment.