47 lines
911 B
Plaintext
47 lines
911 B
Plaintext
![]() |
// ***********************************************************************
|
||
|
// Assembly : Game
|
||
|
// Author : #AUTHOR#
|
||
|
// Created : #DATE#
|
||
|
// Description :
|
||
|
// Last Modified By :
|
||
|
// Last Modified On :
|
||
|
// ***********************************************************************
|
||
|
// <copyright file= "#SCRIPTNAME#" company="#COMPANY#"></copyright>
|
||
|
// <summary></summary>
|
||
|
// ***********************************************************************
|
||
|
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace #NAMESPACE#
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 类功能描述
|
||
|
/// </summary>
|
||
|
public class #SCRIPTNAME# : MonoBehaviour
|
||
|
{
|
||
|
#region Field
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region Method
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region Unity
|
||
|
|
||
|
// Use this for initialization
|
||
|
private void Start()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
// Update is called once per frame
|
||
|
private void Update()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|