mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-11 04:05:11 +00:00
20 lines
325 B
C#
20 lines
325 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|