Nexus/Library/PackageCache/com.unity.ugui@cf93031ebe2d/Tests/Runtime/UGUI/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs

14 lines
275 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools.Utils;
internal class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour
{
public bool isStartCalled { get; private set; }
protected void Start()
{
isStartCalled = true;
}
}