2023-03-28 13:16:30 -04:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using TMPro;
|
|
|
|
|
|
|
|
public class CatItem : MonoBehaviour
|
|
|
|
{
|
|
|
|
[SerializeField] public TextMeshProUGUI CatName;
|
|
|
|
[SerializeField] public string CatID;
|
2023-05-13 23:01:48 -04:00
|
|
|
[SerializeField] public ModPanal ModMan;
|
2023-03-28 13:16:30 -04:00
|
|
|
|
|
|
|
public void LoadMods() {
|
|
|
|
ModMan.GetCategory(int.Parse(CatID));
|
|
|
|
}
|
|
|
|
}
|