Makefile + correction de dépendance circulaire

This commit is contained in:
2024-10-26 17:19:48 +02:00
parent 07515d748d
commit 286590398c
12 changed files with 148 additions and 44 deletions

View File

@@ -0,0 +1,7 @@
package controller;
import java.awt.Point;
public interface TilePlacer {
void placeTile(Point position);
}