Flow.pm 337 B

12345678910111213
  1. package Slic3r::Flow;
  2. use strict;
  3. use warnings;
  4. use parent qw(Exporter);
  5. our @EXPORT_OK = qw(FLOW_ROLE_EXTERNAL_PERIMETER FLOW_ROLE_PERIMETER FLOW_ROLE_INFILL
  6. FLOW_ROLE_SOLID_INFILL
  7. FLOW_ROLE_TOP_SOLID_INFILL FLOW_ROLE_SUPPORT_MATERIAL
  8. FLOW_ROLE_SUPPORT_MATERIAL_INTERFACE);
  9. our %EXPORT_TAGS = (roles => \@EXPORT_OK);
  10. 1;