Trick on the Class: initial setup

hell
This commit is contained in:
minenice55
2022-04-04 10:48:37 -04:00
parent f7d1aaea63
commit a193cf8909
24 changed files with 287 additions and 0 deletions

View File

@ -0,0 +1,20 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace HeavenStudio.Games
{
/**
mob_Trick
**/
public class TrickClass : MonoBehaviour
{
public static TrickClass instance;
private void Awake()
{
instance = this;
}
}
}