Roll the pause menu into the UI page system

This commit is contained in:
Michal Adam Pikulski
2025-10-22 09:35:34 +02:00
parent 357f942e0d
commit 68886aafd4
8 changed files with 395 additions and 151 deletions

View File

@@ -0,0 +1,39 @@
using UnityEngine;
namespace UI.CardSystem
{
public class BackpackInput : MonoBehaviour, ITouchInputConsumer
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void OnTap(Vector2 position)
{
return;
}
public void OnHoldStart(Vector2 position)
{
return;
}
public void OnHoldMove(Vector2 position)
{
return;
}
public void OnHoldEnd(Vector2 position)
{
return;
}
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: e7ea50a695c58944799b4f27a9014301