2025-05-18 01:04:31 +08:00

27 lines
693 B
C#

// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2020-09-02
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "Bullet_sword" company="Kimch"></copyright>
// <summary></summary>
// ***********************************************************************
using UnityEngine;
namespace G
{
/// <summary>
///
/// </summary>
public class Bullet_sword : MonoBehaviour
{
private void Update()
{
this.transform.position += Vector3.up * (Time.deltaTime * 0.1f);
}
}
}