FileInput.hx 185 B

1234567891011121314
  1. package sys.io;
  2. import python.io.NativeInput;
  3. import python.lib.io.RawIOBase;
  4. class FileInput extends NativeInput {
  5. public function new (stream:RawIOBase) {
  6. super(stream);
  7. }
  8. }