Skip to content
Snippets Groups Projects
EntityFactory.java 133 B
Newer Older
  • Learn to ignore specific revisions
  • package model;
    
    import util.Position;
    
    public interface EntityFactory {
        Entity create(Position position, Board<Square> board);
    }