19 lines
588 B
C#
Raw Normal View History

2025-09-19 19:43:49 +05:00
using TMPro;
using UnityEngine;
using UnityEngine.UI;
namespace BulletHellTemplate
{
/// <summary>
/// Struct to hold stat perk images for the UI.
/// </summary>
[System.Serializable]
public struct StatPerkImage
{
[Tooltip("Image component to show the stat perk icon")]
public Image perkIcon; // Image component to show the stat perk icon
[Tooltip("Text to show the current level of the stat perk")]
public TextMeshProUGUI perkLevel; // Text to show the current level of the stat perk
public Image maxLevelStatIcon;
}
}