summaryrefslogtreecommitdiff
path: root/src/graphyx/tests/Test.scala
blob: b53928314f3024a5d4bab945807ee683320c74a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}