Prepare.hx 226 B

12345678910
  1. package lua.lib.luv;
  2. @:luaRequire("luv")
  3. extern class Prepare extends Handle {
  4. static function new_prepare() : Prepare;
  5. @:native("new_prepare") function new() : Void;
  6. function start() : Int;
  7. function stop() : Int;
  8. }