summaryrefslogtreecommitdiff
path: root/src/graphyx/tests/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphyx/tests/Test.scala')
-rw-r--r--src/graphyx/tests/Test.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/graphyx/tests/Test.scala b/src/graphyx/tests/Test.scala
new file mode 100644
index 0000000..b539283
--- /dev/null
+++ b/src/graphyx/tests/Test.scala
@@ -0,0 +1,16 @@
+/*
+ * Graphyx
+ * copyright (c) 2009 Jakob Odersky
+ * made available under the MIT License
+*/
+
+package graphyx.tests
+
+import sims.dynamics._
+trait Test {
+ val world: World
+ val title: String
+ def init(): Unit
+ def fireEvent(): Unit = println("No custom event method defined.")
+ override def toString() = title
+}