Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1.  
  2. public trait Entity : Disposable, Renderable, Tickable
  3. {
  4. public var x: Float
  5. public var y: Float
  6.  
  7. public val game: PewGame
  8. public fun Dispose()
  9.  
  10. override fun dispose()
  11. {
  12. this.Dispose()
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement