37 lines
757 B
C#
Raw Permalink Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2020-12-30
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "BulletBase" company="Kunpo"></copyright>
// <summary></summary>
// ***********************************************************************
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace G
{
/// <summary>
/// 子弹基类
/// </summary>
public class BulletBase : MonoBehaviour
{
#region Field
#endregion
#region Method
#endregion
#region Unity
#endregion
}
}