Maze / Library /PackageCache /com.unity.ugui@1.0.0 /Tests /Runtime /NestedLayout /SceneWithNestedLayoutElementsLoadScript.cs
nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame Contribute Delete
273 Bytes
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools.Utils;
public class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour
{
public bool isStartCalled { get; private set; }
protected void Start()
{
isStartCalled = true;
}
}