1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-21 09:44:26 +00:00
Files
OrcaSlicer-bambulab/lib/Slic3r/Print/Material.pm
T
2012-09-23 02:40:25 +02:00

9 lines
269 B
Perl

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;