Batch 1 - Scripts

This commit is contained in:
Rohan
2026-07-21 08:58:18 +05:30
parent 604c0c786a
commit 1dcd8bf80b
41 changed files with 655 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
using UnityEngine;
public class EdgeTarget : MonoBehaviour
{
public enum TargetType
{
Enemy,
Vault,
Deposit,
Objective
}
[Header("Indicator")]
public TargetType targetType;
public Sprite icon;
public Color iconColor = Color.white;
}