Skip to content

Instantly share code, notes, and snippets.

@adam-arold
Created January 11, 2019 23:35
Show Gist options
  • Save adam-arold/d955e5d17f12073acacfb8730e3920a5 to your computer and use it in GitHub Desktop.
Save adam-arold/d955e5d17f12073acacfb8730e3920a5 to your computer and use it in GitHub Desktop.
class MyComponent(
val children: List<MyComponent>, // 1
internal val drawSurface: PixelGraphicsImpl) { // 2
fun requestFocus() {
}
fun clearFocus() {
}
internal fun render() { // 3
}
internal fun attachTo(container: Container) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment