Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / activity / prop / active / ActiveProp5000.cs
@小李xl 小李xl on 4 Jul 2023 306 bytes 优化相机

using Godot;

[Tool]
public partial class ActiveProp5000 : ActiveProp
{
    protected override void OnPickUp(Role master)
    {
        
    }

    protected override void OnRemove(Role master)
    {
        
    }

    protected override void OnUse()
    {
        GD.Print("使用道具...");
    }
}