21 lines
526 B
C#
21 lines
526 B
C#
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;
|
|
public EditorSettingsPage editorSettingsPage;
|
|
|
|
private void Awake()
|
|
{
|
|
instance = this;
|
|
|
|
Application.targetFrameRate = 90;
|
|
}
|
|
}
|
|
} |