20 lines
365 B
C#
20 lines
365 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class TimeManager : MonoBehaviour
|
|
{
|
|
public bool showAge = true;
|
|
public bool fromBeginning = false;
|
|
|
|
public void ToggleMode(bool value)
|
|
{
|
|
showAge = value;
|
|
}
|
|
|
|
public void ToggleFromBeginning(bool value)
|
|
{
|
|
fromBeginning = value;
|
|
}
|
|
}
|