summaryrefslogtreecommitdiff
path: root/src/graphyx/tests/Test.scala
blob: ca0f8e8c4e3d4e7d16391d444df8d3ab7c5d40ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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
  var enableEvent: Boolean = false
  def fireEvent(): Unit = println("No custom event method defined.")
  override def toString() = title
}