mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-07-10 00:41:03 +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 = "?";
|
|
}
|
|
}
|