Skip to content
Snippets Groups Projects
Select Git revision
  • 2a0fa130f3ed26eeca12cd7587779040454aed7a
  • main default protected
  • NewGraphicSystem
  • LayeredRendering
4 results

Kernel.hpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    EntityFactory.java 133 B
    package model;
    
    import util.Position;
    
    public interface EntityFactory {
        Entity create(Position position, Board<Square> board);
    }