mirror of
https://github.com/celisej567/forest.git
synced 2026-01-02 17:48:39 +03:00
13 lines
209 B
C#
13 lines
209 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class exit : MonoBehaviour
|
|
{
|
|
public void Exit()
|
|
{
|
|
Time.timeScale = 1;
|
|
Application.Quit();
|
|
}
|
|
}
|