2025-03-08 14:21:10 -05:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Ichni.StartMenu
|
|
|
|
|
{
|
|
|
|
|
public class StartMenuManager : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
public static StartMenuManager instance;
|
|
|
|
|
public StartPage startPage;
|
|
|
|
|
public CreateEmptyProjectPage createEmptyProjectPage;
|
2025-03-08 23:11:55 -05:00
|
|
|
public EditorSettingsPage editorSettingsPage;
|
2025-03-08 14:21:10 -05:00
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
2025-05-31 12:54:56 -04:00
|
|
|
instance = this;
|
2025-05-10 23:55:51 -04:00
|
|
|
|
|
|
|
|
Application.targetFrameRate = 90;
|
2025-03-08 14:21:10 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|