Better leg unit death explosion

This commit is contained in:
Anuken
2022-02-01 23:21:57 -05:00
parent 69f59ff803
commit a138b7b9a8
9 changed files with 65 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
package mindustry.entities;
import arc.graphics.g2d.*;
import arc.math.geom.*;
public class LegDestroyData{
public Vec2 a, b;
public TextureRegion region;
public LegDestroyData(Vec2 a, Vec2 b, TextureRegion region){
this.a = a;
this.b = b;
this.region = region;
}
}