959e80cf72
assets upload description.
16 lines
358 B
C#
16 lines
358 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using TMPro;
|
|
|
|
public class CatItem : MonoBehaviour
|
|
{
|
|
[SerializeField] public TextMeshProUGUI CatName;
|
|
[SerializeField] public string CatID;
|
|
[SerializeField] public ModManager ModMan;
|
|
|
|
public void LoadMods() {
|
|
ModMan.GetCategory(int.Parse(CatID));
|
|
}
|
|
}
|