Files
LowPolyBattleSim/Library/PackageCache/com.unity.ugui@9496653a3df6/Tests/Runtime/UGUI/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01: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;
}
}