Implement debug switching

This commit is contained in:
2025-12-18 01:00:17 +08:00
parent a991b5a0ee
commit 871dd5014b
5 changed files with 73 additions and 3 deletions

View File

@@ -6,5 +6,6 @@ namespace Services.Interfaces {
void Setup();
UniTask<bool> TrySwap(Vector2Int from, Vector2Int to);
UniTask<bool> TrySwitch(Vector2Int position);
}
}

View File

@@ -4,5 +4,6 @@ using UnityEngine;
namespace Services.Interfaces {
public interface IInputService {
event Action<Vector2Int, Vector2Int> OnSwapRequested;
event Action<Vector2Int> OnSwitchRequested;
}
}