A game about forced loneliness, made by TACStudios
at master 13 lines 273 B view raw
1using NUnit.Framework; 2using UnityEngine; 3using UnityEngine.TestTools.Utils; 4 5public class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour 6{ 7 public bool isStartCalled { get; private set; } 8 9 protected void Start() 10 { 11 isStartCalled = true; 12 } 13}