VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.ugui/Tests/Runtime/UGUI/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

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