Introduce the Renderer interface.

This commit is contained in:
Manuel Friedli 2020-10-02 18:30:09 +02:00
parent c6b8b0e3bd
commit 487ed4604d
4 changed files with 61 additions and 37 deletions

View file

@ -0,0 +1,8 @@
package ch.fritteli.labyrinth;
import lombok.NonNull;
public interface Renderer<T> {
@NonNull
T render(@NonNull final Labyrinth labyrinth);
}