System for controlling bullet movement

This commit is contained in:
Anuke
2022-03-05 12:13:51 -05:00
parent e0c762612b
commit 730691c589
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package mindustry.entities;
import arc.math.geom.*;
import mindustry.gen.*;
/** Applies custom movement to a bullet. */
public interface Mover{
float move(Bullet bullet);
}