mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
16 lines
276 B
Haxe
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";
|
|
}
|
|
}
|