13 lines
275 B
C#
13 lines
275 B
C#
using UnityEngine;
|
|
|
|
namespace Zenject.Tests.TestDestructionOrder
|
|
{
|
|
public class FooMonoBehaviourUnderSceneContext3 : MonoBehaviour
|
|
{
|
|
public void OnDestroy()
|
|
{
|
|
Debug.Log("Destroyed FooMonoBehaviourUnderSceneContext3");
|
|
}
|
|
}
|
|
}
|