From 29be3e7a8e0b9c6d1e3d2e898b027d4ac1000f32 Mon Sep 17 00:00:00 2001 From: aminecmi Date: Wed, 7 Jan 2015 09:19:49 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20d'une=20action=20de=20base.=20Utilis?= =?UTF-8?q?=C3=A9=20par=20les=20persos=20(changer=20couleur=20case,=20lanc?= =?UTF-8?q?er=20balle,=20lancer=20boule=20...)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Comportements/ComportementAction.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/Comportements/ComportementAction.java diff --git a/src/Comportements/ComportementAction.java b/src/Comportements/ComportementAction.java new file mode 100644 index 0000000..a99cfd5 --- /dev/null +++ b/src/Comportements/ComportementAction.java @@ -0,0 +1,5 @@ +package Comportements; + +public interface ComportementAction { + public void executerAction(); +}