Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / activity / bullet / normal / TrailBullet.cs
@小李xl 小李xl on 26 Jan 2024 194 bytes 测试Trail

using System.Collections.Generic;
using Godot;

[Tool]
public partial class TrailBullet : Bullet
{
    protected override void Process(float delta)
    {
        base.Process(delta);
    }
}