Practice_Unity/Library/PackageCache/com.unity.ugui@f250afc9b68d/Tests/Runtime/UGUI/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs
2025-10-15 17:21:20 +09:00

14 lines
275 B
C#

using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools.Utils;
internal class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour
{
public bool isStartCalled { get; private set; }
protected void Start()
{
isStartCalled = true;
}
}