mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-12-09 17:43:32 +00:00
14 lines
289 B
Haxe
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;
|
|
}
|
|
}
|