Moved unit-related classes, added base flying types
This commit is contained in:
10
core/src/io/anuke/mindustry/entities/units/types/Bomber.java
Normal file
10
core/src/io/anuke/mindustry/entities/units/types/Bomber.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package io.anuke.mindustry.entities.units.types;
|
||||
|
||||
import io.anuke.mindustry.entities.units.FlyingUnitType;
|
||||
|
||||
public class Bomber extends FlyingUnitType {
|
||||
|
||||
public Bomber(String name) {
|
||||
super(name);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package io.anuke.mindustry.entities.units.types;
|
||||
|
||||
import io.anuke.mindustry.entities.units.FlyingUnitType;
|
||||
|
||||
public class Cruiser extends FlyingUnitType {
|
||||
|
||||
public Cruiser(String name) {
|
||||
super(name);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package io.anuke.mindustry.entities.units.types;
|
||||
|
||||
import io.anuke.mindustry.entities.units.FlyingUnitType;
|
||||
|
||||
public class Reaper extends FlyingUnitType {
|
||||
public Reaper(String name) {
|
||||
super(name);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package io.anuke.mindustry.entities.units.types;
|
||||
|
||||
import io.anuke.mindustry.entities.units.FlyingUnitType;
|
||||
|
||||
public class RepairDrone extends FlyingUnitType {
|
||||
|
||||
public RepairDrone(String name) {
|
||||
super(name);
|
||||
}
|
||||
}
|
||||
@@ -2,9 +2,9 @@ package io.anuke.mindustry.entities.units.types;
|
||||
|
||||
import io.anuke.mindustry.entities.units.FlyingUnitType;
|
||||
|
||||
public class Flier extends FlyingUnitType {
|
||||
public class Vtol extends FlyingUnitType {
|
||||
|
||||
public Flier(){
|
||||
public Vtol(){
|
||||
super("flier");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user