Skip to content

Commit ae94094

Browse files
author
Mikkel Sørensen
committed
Rename to Tools/LootLocker
1 parent 616d72e commit ae94094

File tree

5 files changed

+389
-366
lines changed

5 files changed

+389
-366
lines changed

Runtime/Editor/LootLockerExtensionCalls.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using UnityEngine;
55

66
#if UNITY_EDITOR && UNITY_2021_3_OR_NEWER
7-
namespace LootLocker.Admin
7+
namespace LootLocker.Extension
88
{
99
public partial class LootLockerAdminManager
1010
{

Runtime/Editor/StoredUser.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66

77
#if UNITY_EDITOR && UNITY_2021_3_OR_NEWER
88
using LootLocker.Extension.DataTypes;
9-
public class StoredUser : ScriptableObject
9+
10+
namespace LootLocker.Extension
11+
{
12+
public class StoredUser : ScriptableObject
1013
{
1114
[HideInInspector]
1215
public User user = null;
@@ -117,4 +120,6 @@ public static bool CreateNewUser(User _user)
117120
return true;
118121
}
119122
}
123+
}
124+
120125
#endif

Runtime/Editor/VisualElements/LootLocker MFA/LootLockerMFA.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
using UnityEngine.UIElements;
44
using LootLocker;
55
#if UNITY_2021_3_OR_NEWER && UNITY_EDITOR
6-
using LootLocker.Admin;
76

7+
namespace LootLocker.Extension
8+
{
89
public class LootLockerMFA : EditorWindow
910
{
1011
[SerializeField]
@@ -62,5 +63,6 @@ private void OnEditorUpdate()
6263
EditorApplication.QueuePlayerLoopUpdate();
6364
}
6465

66+
}
6567
}
6668
#endif

0 commit comments

Comments
 (0)