summaryrefslogtreecommitdiff
path: root/jeu-test/Lemmini/0.84/src/Game/UpdateListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'jeu-test/Lemmini/0.84/src/Game/UpdateListener.java')
-rw-r--r--jeu-test/Lemmini/0.84/src/Game/UpdateListener.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/jeu-test/Lemmini/0.84/src/Game/UpdateListener.java b/jeu-test/Lemmini/0.84/src/Game/UpdateListener.java
new file mode 100644
index 0000000..a6f4cb5
--- /dev/null
+++ b/jeu-test/Lemmini/0.84/src/Game/UpdateListener.java
@@ -0,0 +1,29 @@
+package Game;
+
+/*
+ * Copyright 2009 Volker Oth
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Listener interface to inform GUI about updates
+ *
+ * @author Volker Oth
+ */
+public interface UpdateListener {
+ /**
+ * Action to perform if Listener is called
+ */
+ public void update();
+}