summaryrefslogtreecommitdiff
path: root/src/graphyx/graphics/GraphicalObject.scala
blob: 3c56de6a6cc78d8dc997459609d8cdd9e0be8b8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Graphyx
 * copyright (c) 2009 Jakob Odersky
 * made available under the MIT License
*/

package graphyx.graphics

/**Only copies functional info! (e.g. Graphical world does not include shapes, bodies).*/
trait GraphicalObject extends Drawable{
  
  /**Pointer to real object.*/
  val real: AnyRef
  def draw(): Unit
}