cirnogodot/Scripts/Resources/IBulletModifier.cs

6 lines
150 B
C#
Raw Normal View History

2025-02-05 19:41:49 +01:00
namespace Cirno.Scripts.Resources;
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
}