12 lines
230 B
C#
12 lines
230 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 该脚本主要用于挂载到需要使用缓存池功能的预设体对象上
|
|
/// </summary>
|
|
public class PoolObj : MonoBehaviour
|
|
{
|
|
public int maxNum;
|
|
}
|