Files
OrcaSlicer-bambulab/lib/Slic3r/Print/Material.pm
T

9 lines
269 B
Perl
Raw Normal View History

2012-09-23 02:40:25 +02:00
package Slic3r::Print::Material;
use Moo;
has 'extruders' => (is => 'rw', default => sub { {} }); # by role
has 'flows' => (is => 'rw', default => sub { {} }); # by role
has 'first_layer_flows' => (is => 'rw', default => sub { {} }); # by role
1;