package serializer;

import shape.Shape;

import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;

public class ShapeWriter {
    public static void write (File file, List<Shape> shapes) throws IOException {
        PrintWriter printWriter = new PrintWriter(file);
        printWriter.println("Coucou");
    }
}