cirnogodot/Scripts/Resources/IBulletModifier.cs
2025-03-03 15:21:24 +01:00

8 lines
No EOL
164 B
C#

using Godot;
namespace Cirno.Scripts.Resources;
public interface IBulletModifier
{
float ModifySpeed(float baseSpeed, int bulletIndex, int totalBullets);
}