aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/sims/test/gui/Scene.scala
blob: 6e1664ec761e68076ada7806c844899157d60742 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package sims.test.gui

trait Scene extends Reactor {
	def name: String = this.getClass().getName()
	def description: String = ""
	
	val world = new DebugWorld
	
	def init(): Unit
	
	def exit(): Unit = {}
	
}