arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.ugui@38c58105e446/Tests/Runtime/UGUI/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02: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;
}
}