Skip to content

Commit

Permalink
[v0.1.6] Dependency updated
Browse files Browse the repository at this point in the history
  • Loading branch information
g0dzZz-coder committed Jul 12, 2024
1 parent f8d5875 commit fd1c207
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Runtime/PauseScope.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// SPDX-License-Identifier: Apache-2.0
// © 2024 Nikolay Melnikov <[email protected]>

using System;
using System.Collections.Generic;
using Depra.Bootstrap.Project;
using Depra.IoC.Composition;
using Depra.IoC.QoL.Builder;
using Depra.Pause;
using Depra.SerializeReference.Extensions;
using UnityEngine;
using static Depra.Bootstrap.Pause.Module;

namespace Depra.Bootstrap.Pause
{
[CreateAssetMenu(menuName = MENU_PATH + nameof(ProjectScope), fileName = nameof(PauseScope), order = DEFAULT_ORDER)]
public sealed class PauseScope : ProjectScope
[Serializable]
[SerializeReferenceMenuPath(nameof(PauseScope))]
public sealed class PauseScope : ILifetimeScope
{
[SerializeReferenceDropdown]
[UnityEngine.SerializeReference]
Expand All @@ -22,7 +22,7 @@ public sealed class PauseScope : ProjectScope
[UnityEngine.SerializeReference]
private List<IPauseListener> _listeners;

public override void Configure(IContainerBuilder builder) => builder
void ILifetimeScope.Configure(IContainerBuilder builder) => builder
.RegisterSingleton(_inputs)
.RegisterSingleton(_listeners)
.RegisterSingleton<IPauseService, PauseService>();
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "com.depra.bootstrap.pause",
"version": "0.1.5",
"version": "0.1.6",
"displayName": "Depra.Bootstrap.Pause",
"description": "",
"unity": "2022.3",
"license": "Apache-2.0",
"dependencies": {
"com.depra.pause.unity": "0.0.9",
"com.depra.bootstrap.unity": "0.2.8-pre.1",
"com.depra.bootstrap.unity": "0.2.8-pre.4",
"com.depra.serialize-reference.extensions": "0.0.10"
},
"keywords": [
Expand Down

0 comments on commit fd1c207

Please sign in to comment.