Files

14 lines
275 B
C#
Raw Permalink Normal View History

2026-01-08 16:50:20 +00:00
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools.Utils;
internal class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour
{
public bool isStartCalled { get; private set; }
protected void Start()
{
isStartCalled = true;
}
}