cirnogodot/Scripts/Resources/IBulletModifier.cs
2025-02-09 09:37:43 +01:00

6 lines
No EOL
150 B
C#

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