cirnogodot/Scripts/Resources/IBulletModifier.cs

8 lines
164 B
C#
Raw Normal View History

2025-03-03 15:21:24 +01:00
using Godot;
namespace Cirno.Scripts.Resources;
2025-02-05 19:41:49 +01:00
public interface IBulletModifier
{
2025-02-09 09:37:43 +01:00
float ModifySpeed(float baseSpeed, int bulletIndex, int totalBullets);
2025-02-05 19:41:49 +01:00
}