Skip to content

Commit

Permalink
Merge pull request #7 from techno-dwarf-works/feature/refactoring
Browse files Browse the repository at this point in the history
Refactoring
  • Loading branch information
uurha committed Apr 10, 2024
1 parent 9f713de commit fc14519
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
1 change: 0 additions & 1 deletion Editor/BetterSingletons.Editor.asmdef
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"rootNamespace": "Better.Singletons.EditorAddons",
"references": [
"GUID:af7fffdf1d83bc842b0f6e3a01efda16",
"GUID:28da8d3b12e3efa47928e0c9070f853d",
"GUID:01df13aca8d01e24a911bcc3e8277031"
],
"includePlatforms": [
Expand Down
4 changes: 2 additions & 2 deletions Runtime/BetterSingletons.Runtime.asmdef
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "BetterSingletons.Runtime",
"rootNamespace": "Better.Singletons",
"rootNamespace": "Better.Singletons.Runtime",
"references": [
"GUID:28da8d3b12e3efa47928e0c9070f853d",
"GUID:8bd4b41f8da90144d9006c4d926c9679",
"GUID:01df13aca8d01e24a911bcc3e8277031"
],
"includePlatforms": [],
Expand Down
2 changes: 1 addition & 1 deletion Runtime/MonoSingleton.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using System.Collections.Generic;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using UnityEngine;

namespace Better.Singletons.Runtime
Expand Down
2 changes: 1 addition & 1 deletion Runtime/ScriptableSingletonAsset.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using Better.Singletons.Runtime.Utility;
using UnityEngine;

namespace Better.Singletons.Runtime
Expand Down
2 changes: 1 addition & 1 deletion Runtime/ScriptableSingletonObject.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.IO;
using Better.Singletons.Runtime.Utility;
using UnityEngine;

namespace Better.Singletons.Runtime
Expand Down
5 changes: 3 additions & 2 deletions Runtime/Utility/ScriptableSingletonUtility.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
using System;
using System.IO;
using System.Reflection;
using Better.Extensions.Runtime;
using Better.Commons.Runtime.Extensions;
using Better.Commons.Runtime.Utility;
using Better.Singletons.Runtime.Attributes;
using UnityEngine;

namespace Better.Singletons.Runtime
namespace Better.Singletons.Runtime.Utility
{
internal static class ScriptableSingletonUtility
{
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "com.tdw.better.singletons",
"displayName": "Better Singletons",
"version": "0.0.8",
"version": "0.1.0",
"unity": "2021.3",
"description": " ",
"dependencies": {
"com.uurha.betterextensions": "1.5.98",
"com.tdw.better.commons": "0.0.2",
"com.tdw.better.internal.core": "0.0.2"
},
"author": {
Expand Down

0 comments on commit fc14519

Please sign in to comment.