Move scripts to Scripts folder

This commit is contained in:
Gabriel Le Breton
2020-10-08 10:26:37 -04:00
parent d8a020a4d6
commit 981f4577ee
5 changed files with 8 additions and 0 deletions
+15
View File
@@ -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);
}
}