From eeaf611158e3e2f07e72233ed88132b754aae48e Mon Sep 17 00:00:00 2001 From: klemek Date: Wed, 16 Dec 2020 17:35:07 +0100 Subject: [PATCH] moved scripts --- Assets/Scripts/GameManager.cs | 2 +- Assets/Scripts/PointerManager.cs | 1 + Assets/Scripts/UI/UIGate.cs | 1 + Assets/Scripts/{Gates.meta => Workspace.meta} | 2 +- Assets/Scripts/{ => Workspace}/Anchor.cs | 2 +- Assets/Scripts/{ => Workspace}/Anchor.cs.meta | 0 Assets/Scripts/{ => Workspace}/Cable.cs | 2 +- Assets/Scripts/{ => Workspace}/Cable.cs.meta | 0 Assets/Scripts/{ => Workspace}/Gate.cs | 4 ++-- Assets/Scripts/{ => Workspace}/Gate.cs.meta | 0 Assets/Scripts/{Gates => Workspace}/GateDefinition.cs | 2 +- Assets/Scripts/{Gates => Workspace}/GateDefinition.cs.meta | 0 Assets/Scripts/{ => Workspace}/GateSprite.cs | 4 ++-- Assets/Scripts/{ => Workspace}/GateSprite.cs.meta | 0 14 files changed, 11 insertions(+), 9 deletions(-) rename Assets/Scripts/{Gates.meta => Workspace.meta} (77%) rename Assets/Scripts/{ => Workspace}/Anchor.cs (94%) rename Assets/Scripts/{ => Workspace}/Anchor.cs.meta (100%) rename Assets/Scripts/{ => Workspace}/Cable.cs (96%) rename Assets/Scripts/{ => Workspace}/Cable.cs.meta (100%) rename Assets/Scripts/{ => Workspace}/Gate.cs (92%) rename Assets/Scripts/{ => Workspace}/Gate.cs.meta (100%) rename Assets/Scripts/{Gates => Workspace}/GateDefinition.cs (96%) rename Assets/Scripts/{Gates => Workspace}/GateDefinition.cs.meta (100%) rename Assets/Scripts/{ => Workspace}/GateSprite.cs (87%) rename Assets/Scripts/{ => Workspace}/GateSprite.cs.meta (100%) diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs index 1fdc756..0384e7f 100755 --- a/Assets/Scripts/GameManager.cs +++ b/Assets/Scripts/GameManager.cs @@ -2,7 +2,7 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; -using UntitledLogicGame.Gates; +using UntitledLogicGame.Workspace; namespace UntitledLogicGame { diff --git a/Assets/Scripts/PointerManager.cs b/Assets/Scripts/PointerManager.cs index e69729a..d8197ec 100755 --- a/Assets/Scripts/PointerManager.cs +++ b/Assets/Scripts/PointerManager.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using Unity.VectorGraphics; using UnityEngine; +using UntitledLogicGame.Workspace; namespace UntitledLogicGame { diff --git a/Assets/Scripts/UI/UIGate.cs b/Assets/Scripts/UI/UIGate.cs index 3073ef5..d000335 100755 --- a/Assets/Scripts/UI/UIGate.cs +++ b/Assets/Scripts/UI/UIGate.cs @@ -4,6 +4,7 @@ using Unity.VectorGraphics; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; +using UntitledLogicGame.Workspace; namespace UntitledLogicGame.UI { diff --git a/Assets/Scripts/Gates.meta b/Assets/Scripts/Workspace.meta similarity index 77% rename from Assets/Scripts/Gates.meta rename to Assets/Scripts/Workspace.meta index c6717e4..f5c5455 100755 --- a/Assets/Scripts/Gates.meta +++ b/Assets/Scripts/Workspace.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 55a2af5530764a041ab519b9d3fa15a8 +guid: 96af46260d8f9104a88814067f63d050 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/Scripts/Anchor.cs b/Assets/Scripts/Workspace/Anchor.cs similarity index 94% rename from Assets/Scripts/Anchor.cs rename to Assets/Scripts/Workspace/Anchor.cs index 2f98738..b9a958d 100755 --- a/Assets/Scripts/Anchor.cs +++ b/Assets/Scripts/Workspace/Anchor.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using UnityEngine; -namespace UntitledLogicGame +namespace UntitledLogicGame.Workspace { public class Anchor : MonoBehaviour { diff --git a/Assets/Scripts/Anchor.cs.meta b/Assets/Scripts/Workspace/Anchor.cs.meta similarity index 100% rename from Assets/Scripts/Anchor.cs.meta rename to Assets/Scripts/Workspace/Anchor.cs.meta diff --git a/Assets/Scripts/Cable.cs b/Assets/Scripts/Workspace/Cable.cs similarity index 96% rename from Assets/Scripts/Cable.cs rename to Assets/Scripts/Workspace/Cable.cs index 79e69c2..7ba2a9d 100755 --- a/Assets/Scripts/Cable.cs +++ b/Assets/Scripts/Workspace/Cable.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using UnityEngine; -namespace UntitledLogicGame +namespace UntitledLogicGame.Workspace { public class Cable : MonoBehaviour { diff --git a/Assets/Scripts/Cable.cs.meta b/Assets/Scripts/Workspace/Cable.cs.meta similarity index 100% rename from Assets/Scripts/Cable.cs.meta rename to Assets/Scripts/Workspace/Cable.cs.meta diff --git a/Assets/Scripts/Gate.cs b/Assets/Scripts/Workspace/Gate.cs similarity index 92% rename from Assets/Scripts/Gate.cs rename to Assets/Scripts/Workspace/Gate.cs index 5858a78..82d825e 100755 --- a/Assets/Scripts/Gate.cs +++ b/Assets/Scripts/Workspace/Gate.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.Linq; using UnityEngine; -using UntitledLogicGame.Gates; +using UntitledLogicGame.Workspace.Gates; -namespace UntitledLogicGame +namespace UntitledLogicGame.Workspace { public class Gate : MonoBehaviour { diff --git a/Assets/Scripts/Gate.cs.meta b/Assets/Scripts/Workspace/Gate.cs.meta similarity index 100% rename from Assets/Scripts/Gate.cs.meta rename to Assets/Scripts/Workspace/Gate.cs.meta diff --git a/Assets/Scripts/Gates/GateDefinition.cs b/Assets/Scripts/Workspace/GateDefinition.cs similarity index 96% rename from Assets/Scripts/Gates/GateDefinition.cs rename to Assets/Scripts/Workspace/GateDefinition.cs index df78664..18094bf 100755 --- a/Assets/Scripts/Gates/GateDefinition.cs +++ b/Assets/Scripts/Workspace/GateDefinition.cs @@ -5,7 +5,7 @@ using System.Text; using System.Threading.Tasks; using UnityEngine; -namespace UntitledLogicGame.Gates +namespace UntitledLogicGame.Workspace.Gates { public enum GateType { diff --git a/Assets/Scripts/Gates/GateDefinition.cs.meta b/Assets/Scripts/Workspace/GateDefinition.cs.meta similarity index 100% rename from Assets/Scripts/Gates/GateDefinition.cs.meta rename to Assets/Scripts/Workspace/GateDefinition.cs.meta diff --git a/Assets/Scripts/GateSprite.cs b/Assets/Scripts/Workspace/GateSprite.cs similarity index 87% rename from Assets/Scripts/GateSprite.cs rename to Assets/Scripts/Workspace/GateSprite.cs index d95e629..1002eff 100755 --- a/Assets/Scripts/GateSprite.cs +++ b/Assets/Scripts/Workspace/GateSprite.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.Linq; using UnityEngine; -using UntitledLogicGame.Gates; +using UntitledLogicGame.Workspace.Gates; -namespace UntitledLogicGame +namespace UntitledLogicGame.Workspace { public class GateSprite : MonoBehaviour { diff --git a/Assets/Scripts/GateSprite.cs.meta b/Assets/Scripts/Workspace/GateSprite.cs.meta similarity index 100% rename from Assets/Scripts/GateSprite.cs.meta rename to Assets/Scripts/Workspace/GateSprite.cs.meta