Repaired hole minigame

This commit is contained in:
2026-04-26 12:55:21 +02:00
parent 74fa735322
commit abbe4842fe
26 changed files with 4471 additions and 282 deletions

View File

@@ -3,6 +3,7 @@ using System.Collections;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
using GeoSus.Client;
public class CableMiniGame : MonoBehaviour, ITask
{
@@ -21,7 +22,7 @@ public class CableMiniGame : MonoBehaviour, ITask
public string TaskID { get; set; }
public TaskType TaskType { get; set; }
public string TaskName { get; set; }
public (double, double) TaskLocation { get; set; }
public Position TaskLocation { get; set; }
public bool IsCompleted { get; private set; }
private Action<ITask> _onCompleted;