Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/ScatterRoot.cs
2026-02-21 16:45:37 +08:00

14 lines
223 B
C#

using System.Collections.Generic;
using UnityEngine;
public class ScatterRoot : MonoBehaviour
{
[HideInInspector]
public List<ScatteredObject> scatteredObjects;
private void Awake()
{
scatteredObjects.Clear();
}
}