polygone/Library/PackageCache/com.unity.ugui@1.0.0/Tests/Runtime/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs
2021-08-02 05:44:37 -04:00

13 lines
273 B
C#

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