mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-04-30 06:24:25 +02: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;
|
|
}
|
|
}
|
|
} |