mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-05 02:35:55 +00:00
6 lines
132 B
C#
6 lines
132 B
C#
|
|
namespace Cirno.Scripts.Resources;
|
|||
|
|
|
|||
|
|
public interface IBulletModifier
|
|||
|
|
{
|
|||
|
|
float ModifySpeed(float baseSpeed, int bulletIndex);
|
|||
|
|
}
|