mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:55:35 +00:00
12 lines
No EOL
382 B
C#
12 lines
No EOL
382 B
C#
using Cirno.Scripts.Components;
|
|
using Godot;
|
|
|
|
namespace Cirno.Scripts.Resources;
|
|
|
|
[GlobalClass]
|
|
[Tool]
|
|
public abstract partial class BulletCreationModifier : Resource, IBulletModifier
|
|
{
|
|
public abstract BulletInfo ModifyBullet(BulletInfo bullet, int bulletIndex, int totalBullets);
|
|
//public abstract float ModifySpeed(float baseSpeed, int bulletIndex, int totalBullets);
|
|
} |