17 lines
350 B
C#
17 lines
350 B
C#
using UnityEngine;
|
|
|
|
public class EndingManager
|
|
{
|
|
public void Activate()
|
|
{
|
|
Debug.Log("Ending Manager Activated: Initializing ending state.");
|
|
// Add hospital-specific setup logic here
|
|
}
|
|
|
|
public void Deactivate()
|
|
{
|
|
Debug.Log("Endinng Manager Deactivated.");
|
|
// Add cleanup logic if necessary
|
|
}
|
|
}
|