Version.hx 437 B

123456789101112131415
  1. package system;
  2. /**
  3. Warning: This class definition is incomplete.
  4. In order to get most current extern definitions, install/update hxcs library with:
  5. haxelib install hxcs
  6. Please refer to http://lib.haxe.org/p/hxcs for more information.
  7. **/
  8. @:native('System.Version') extern class Version
  9. {
  10. var Build(default, null):Int;
  11. var Major(default, null):Int;
  12. var Minor(default, null):Int;
  13. var Revision(default, null):Int;
  14. }