Skip to content
Snippets Groups Projects
Commit 66144200 authored by jc4283's avatar jc4283
Browse files

Delete Adventure1to2.cs

parent c69497fe
No related branches found
No related tags found
No related merge requests found
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Adventure1to2 : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.Z))
{
SceneManager.LoadScene("AdventureBegins2");
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment