Files
stas-barecky/Library/PackageCache/com.unity.ugui@52e65280e89e/Tests/Runtime/UGUI/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs
2026-01-08 20:43:08 +05: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;
}
}