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