YanCheng_Metrology/Assets/ScriptTemplates/41-CustomScript-YourCustomS...

26 lines
263 B
Plaintext

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace YourNameSpace{
public class #SCRIPTNAME# : MonoBehaviour
{
void Start()
{
}
void Update()
{
}
void OnDestroy()
{
}
}
}