Skip to content
Snippets Groups Projects
Select Git revision
  • 78c69d96e5bd8c2ee34c4b860f4ada2eb7444f3c
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

State.java

Blame
  • Forked from YAGOUBI Rim / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ShapeWriter.java 356 B
    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");
        }
    }