Move scripts to Scripts folder
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class YouWin : MonoBehaviour
|
||||
{
|
||||
[SerializeField]
|
||||
private GameObject gameObjectToEnable;
|
||||
|
||||
public void Run()
|
||||
{
|
||||
gameObjectToEnable.SetActive(true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user