Permalink
Cannot retrieve contributors at this time
zircon/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/internal/renderer/Renderer.kt
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21 lines (16 sloc)
393 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.hexworks.zircon.internal.renderer | |
import org.hexworks.zircon.api.behavior.Closeable | |
interface Renderer : Closeable { | |
/** | |
* Called when the [Renderer] is first created. | |
*/ | |
fun create() | |
/** | |
* Called when the [Renderer] should render. | |
*/ | |
fun render() | |
/** | |
* Called when the [Renderer] is destroyed. | |
*/ | |
override fun close() | |
} |