14 lines
273 B
C#
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;
|
||
|
}
|
||
|
}
|