mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
14 lines
286 B
Haxe
14 lines
286 B
Haxe
package shapes;
|
|
|
|
import src.DtsObject;
|
|
|
|
class Oilslick extends DtsObject {
|
|
public function new() {
|
|
super();
|
|
this.dtsPath = "data/shapes/hazards/oilslick.dts";
|
|
this.identifier = "Oilslick";
|
|
this.useInstancing = true;
|
|
this.isCollideable = true;
|
|
this.isTSStatic = false;
|
|
}
|
|
}
|