mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-12-08 00:53:24 +00:00
14 lines
243 B
Haxe
14 lines
243 B
Haxe
package dif;
|
|
|
|
@:expose
|
|
class Version {
|
|
public var difVersion:Int;
|
|
public var interiorVersion:Int;
|
|
public var interiorType:String;
|
|
|
|
public function new() {
|
|
this.difVersion = 44;
|
|
this.interiorVersion = 0;
|
|
this.interiorType = "?";
|
|
}
|
|
}
|