mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-02-17 03:35:58 +00:00
13 lines
268 B
Haxe
13 lines
268 B
Haxe
package shapes;
|
|
|
|
import src.DtsObject;
|
|
|
|
class SignFinish extends DtsObject {
|
|
public function new() {
|
|
super();
|
|
this.dtsPath = "data/shapes/signs/finishlinesign.dts";
|
|
this.isCollideable = true;
|
|
this.identifier = "SignFinish";
|
|
this.useInstancing = false;
|
|
}
|
|
}
|