Random.hx 265 B

1234567891011121314
  1. package system;
  2. @:native("System.Random")
  3. extern class Random
  4. {
  5. public function new():Void;
  6. @:overload(function(max:Int):Int {})
  7. @:overload(function(min:Int, max:Int):Int {})
  8. public function Next():Int;
  9. public function NextDouble():Float;
  10. }