mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-06-09 07:08:27 -04:00
17 lines
199 B
C++
17 lines
199 B
C++
#ifndef slic3r_SurfaceCollection_hpp_
|
|
#define slic3r_SurfaceCollection_hpp_
|
|
|
|
#include "Surface.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class SurfaceCollection
|
|
{
|
|
public:
|
|
SurfacesPtr surfaces;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|