Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.ugui@f250afc9b68d/Tests/Runtime/UGUI/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs

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;
}
}