PrusaSlicer-NonPlainar/lib/Slic3r/Flow.pm
Alessandro Ranellucci 036badf932 Ported Flow to XS
2014-01-05 13:16:13 +01:00

13 lines
304 B
Perl

package Slic3r::Flow;
use strict;
use warnings;
use parent qw(Exporter);
our @EXPORT_OK = qw(FLOW_ROLE_PERIMETER FLOW_ROLE_INFILL FLOW_ROLE_SOLID_INFILL
FLOW_ROLE_TOP_SOLID_INFILL FLOW_ROLE_SUPPORT_MATERIAL
FLOW_ROLE_SUPPORT_MATERIAL_INTERFACE);
our %EXPORT_TAGS = (roles => \@EXPORT_OK);
1;