MBHaxe/src/shapes/SuperSpeed.hx
2021-06-06 23:55:54 +05:30

14 lines
289 B
Haxe

package shapes;
import src.DtsObject;
class SuperSpeed extends PowerUp {
public function new() {
super();
this.dtsPath = "data/shapes/items/superspeed.dts";
this.isCollideable = false;
this.isTSStatic = false;
this.identifier = "SuperSpeed";
this.useInstancing = true;
}
}