Skip to content
Snippets Groups Projects
Select Git revision
  • 2640a150bb96d7a2e37a349d002852522b910cf8
  • main default protected
2 results

Grid.java

Blame
  • Forked from TRAVERS Corentin / flooding-template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ShapeWriter.java 232 B
    package serializer;
    
    import shape.Shape;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.List;
    
    public class ShapeWriter {
        public static void write (File file, List<Shape> shapes) throws IOException {
        }
    }