Files
CartoonFPS/Library/PackageCache/com.unity.ugui@a0f5d16b3c82/Tests/Runtime/UGUI/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs

14 lines
273 B
C#
Raw Normal View History

2025-08-05 09:30:40 +01:00
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools.Utils;
public class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour
{
public bool isStartCalled { get; private set; }
protected void Start()
{
isStartCalled = true;
}
}