2022-10-25 19:07:39 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class StartSeneData : MonoBehaviour
|
|
|
|
{
|
2023-04-09 14:35:38 +00:00
|
|
|
[Header("Game mode")]
|
|
|
|
public int gamemode = 0;// default trainning mode
|
2022-10-25 19:07:39 +00:00
|
|
|
|
|
|
|
void Awake()
|
|
|
|
{
|
|
|
|
DontDestroyOnLoad(transform.gameObject);
|
|
|
|
}
|
|
|
|
}
|