7 lines
155 B
C#
7 lines
155 B
C#
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class ScrollRefreshData : MonoBehaviour
|
||
|
{
|
||
|
public List<object> list = new List<object>();
|
||
|
}
|