Commit d6c618ad authored by Gerard Gascón's avatar Gerard Gascón
Browse files

chore: organized project ui structure

parent 58ec07b1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
using Domain;
using Presenter;
using UnityEngine;
using View.UI;

namespace View {
	public class Dependencies : MonoBehaviour {
+3 −0
Original line number Diff line number Diff line
fileFormatVersion: 2
guid: 8ed2eebce0014d24a29eea7ee5f51ba4
timeCreated: 1713196313
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
using UnityEngine;
using UnityEngine.UI;

namespace View {
namespace View.UI {
	public class CloseButton : MonoBehaviour {
		private Button _button;

+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ using Presenter;
using TMPro;
using UnityEngine;

namespace View {
namespace View.UI {
	public class ExpressionInput : MonoBehaviour, IExpressionInput {
		[SerializeField] private TMP_Text text;
		private ExpressionClick _click;
Loading