17 lines
293 B
C#
17 lines
293 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class FreePanel02 : MonoBehaviour
|
|
{
|
|
public Transform chooseContent;
|
|
|
|
public GameObject chooseItemPrefab;
|
|
|
|
public Transform msgContent;
|
|
|
|
public GameObject msgPrefab;
|
|
|
|
}
|