MBHaxe/src/shapes/Sky.hx
2022-12-05 14:35:57 +05:30

16 lines
276 B
Haxe

package shapes;
import src.DtsObject;
class Sky extends DtsObject {
public function new(type:String) {
super();
this.dtsPath = 'data/shapes/skies/${type}/${type}.dts';
this.isCollideable = false;
this.useInstancing = true;
this.identifier = type + "Sky";
}
}