diff --git a/Assets/Script/Gameplay/Facility/ColliderEditableController.cs b/Assets/Script/Gameplay/Facility/ColliderEditableController.cs index d1799bd..3eb87b6 100644 --- a/Assets/Script/Gameplay/Facility/ColliderEditableController.cs +++ b/Assets/Script/Gameplay/Facility/ColliderEditableController.cs @@ -1,4 +1,5 @@ using UnityEngine; +using Script.Gameplay.Interface; namespace Script.Gameplay.Facility { diff --git a/Assets/Script/Gameplay/Facility/DoorInteractController.cs b/Assets/Script/Gameplay/Facility/DoorInteractController.cs index 702028a..3e6a5a7 100644 --- a/Assets/Script/Gameplay/Facility/DoorInteractController.cs +++ b/Assets/Script/Gameplay/Facility/DoorInteractController.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; using Gameplay.Player; using UnityEngine; -using Interface; +using Script.Gameplay.Interface; using Script.Gameplay.Connect; namespace Script.Gameplay.Facility diff --git a/Assets/Script/Gameplay/Facility/FacilityEditableController.cs b/Assets/Script/Gameplay/Facility/FacilityEditableController.cs index 72c25fc..eb6820e 100644 --- a/Assets/Script/Gameplay/Facility/FacilityEditableController.cs +++ b/Assets/Script/Gameplay/Facility/FacilityEditableController.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; using Gameplay.Player; using UnityEngine; -using Interface; +using Script.Gameplay.Interface; namespace Script.Gameplay.Facility { diff --git a/Assets/Script/Gameplay/Facility/InteractableBaseController.cs b/Assets/Script/Gameplay/Facility/InteractableBaseController.cs index b807ced..2d003f0 100644 --- a/Assets/Script/Gameplay/Facility/InteractableBaseController.cs +++ b/Assets/Script/Gameplay/Facility/InteractableBaseController.cs @@ -1,5 +1,5 @@ using UnityEngine; -using Interface; +using Script.Gameplay.Interface; namespace Script.Gameplay.Facility { diff --git a/Assets/Script/Gameplay/Facility/RigidbodyEditableController.cs b/Assets/Script/Gameplay/Facility/RigidbodyEditableController.cs index dfae632..0dd7672 100644 --- a/Assets/Script/Gameplay/Facility/RigidbodyEditableController.cs +++ b/Assets/Script/Gameplay/Facility/RigidbodyEditableController.cs @@ -1,4 +1,5 @@ using UnityEngine; +using Script.Gameplay.Interface; namespace Script.Gameplay.Facility { diff --git a/Assets/Script/Gameplay/Interface/IDamageable.cs b/Assets/Script/Gameplay/Interface/IDamageable.cs index e5c134a..ee88c2b 100644 --- a/Assets/Script/Gameplay/Interface/IDamageable.cs +++ b/Assets/Script/Gameplay/Interface/IDamageable.cs @@ -1,4 +1,4 @@ -namespace Interface +namespace Script.Gameplay.Interface { public interface IDamageable { diff --git a/Assets/Script/Gameplay/Interface/IEditable.cs b/Assets/Script/Gameplay/Interface/IEditable.cs index 4575877..9295a4c 100644 --- a/Assets/Script/Gameplay/Interface/IEditable.cs +++ b/Assets/Script/Gameplay/Interface/IEditable.cs @@ -3,7 +3,7 @@ using Gameplay.Player; using System.Collections.Generic; using Script.Gameplay.Facility; -namespace Interface +namespace Script.Gameplay.Interface { public interface IEditable { diff --git a/Assets/Script/Gameplay/Facility/IEditableComponent.cs b/Assets/Script/Gameplay/Interface/IEditableComponent.cs similarity index 88% rename from Assets/Script/Gameplay/Facility/IEditableComponent.cs rename to Assets/Script/Gameplay/Interface/IEditableComponent.cs index 3b10cc2..ab069b0 100644 --- a/Assets/Script/Gameplay/Facility/IEditableComponent.cs +++ b/Assets/Script/Gameplay/Interface/IEditableComponent.cs @@ -1,4 +1,4 @@ -namespace Script.Gameplay.Facility +namespace Script.Gameplay.Interface { public enum LockLevel { diff --git a/Assets/Script/Gameplay/Facility/IEditableComponent.cs.meta b/Assets/Script/Gameplay/Interface/IEditableComponent.cs.meta similarity index 100% rename from Assets/Script/Gameplay/Facility/IEditableComponent.cs.meta rename to Assets/Script/Gameplay/Interface/IEditableComponent.cs.meta diff --git a/Assets/Script/Gameplay/Interface/IInteractable.cs b/Assets/Script/Gameplay/Interface/IInteractable.cs index 776b7c0..c56257f 100644 --- a/Assets/Script/Gameplay/Interface/IInteractable.cs +++ b/Assets/Script/Gameplay/Interface/IInteractable.cs @@ -1,5 +1,5 @@ using UnityEngine; -namespace Interface +namespace Script.Gameplay.Interface { public interface IInteractable { diff --git a/Assets/Script/Gameplay/Player/PlayerController.cs b/Assets/Script/Gameplay/Player/PlayerController.cs index e2ff605..41da790 100644 --- a/Assets/Script/Gameplay/Player/PlayerController.cs +++ b/Assets/Script/Gameplay/Player/PlayerController.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; using System.Linq; using Gameplay; -using Interface; +using Script.Gameplay.Interface; using UnityEngine; using Core; using Script.Gameplay.Global; diff --git a/Assets/Script/Gameplay/Player/PlayerEditController.cs b/Assets/Script/Gameplay/Player/PlayerEditController.cs index bdbb69d..e632968 100644 --- a/Assets/Script/Gameplay/Player/PlayerEditController.cs +++ b/Assets/Script/Gameplay/Player/PlayerEditController.cs @@ -1,6 +1,6 @@ using Core; using UnityEngine; -using Interface; +using Script.Gameplay.Interface; using Script.Gameplay.Input; namespace Gameplay.Player diff --git a/Assets/Script/Gameplay/Player/PlayerInteractorController.cs b/Assets/Script/Gameplay/Player/PlayerInteractorController.cs index 38c0487..20216e2 100644 --- a/Assets/Script/Gameplay/Player/PlayerInteractorController.cs +++ b/Assets/Script/Gameplay/Player/PlayerInteractorController.cs @@ -1,5 +1,5 @@ using UnityEngine; -using Interface; +using Script.Gameplay.Interface; using System; using Script.Gameplay.Input; diff --git a/Assets/Script/Gameplay/UI/EditableComponentViewer.cs b/Assets/Script/Gameplay/UI/EditableComponentViewer.cs index 031ff37..133c8c4 100644 --- a/Assets/Script/Gameplay/UI/EditableComponentViewer.cs +++ b/Assets/Script/Gameplay/UI/EditableComponentViewer.cs @@ -2,7 +2,7 @@ using Core; using TMPro; using UnityEngine; using UnityEngine.UI; -using Script.Gameplay.Facility; +using Script.Gameplay.Interface; namespace UI { diff --git a/Assets/Script/Gameplay/UI/PlayerEditViewer.cs b/Assets/Script/Gameplay/UI/PlayerEditViewer.cs index 4d88500..b768556 100644 --- a/Assets/Script/Gameplay/UI/PlayerEditViewer.cs +++ b/Assets/Script/Gameplay/UI/PlayerEditViewer.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; using System.Linq; using Core; -using Interface; +using Script.Gameplay.Interface; using Gameplay.Player; using Script.Gameplay.Facility; using UnityEngine;