aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/gpu/Gpu.kt
blob: db95c03e01838a0b7b189a1483f69482431a9c88 (plain)
1
2
3
4
5
6
7
8
9
package gpu

import java.awt.Color
import java.awt.image.BufferedImage

interface Gpu {
  fun setPixel(x: Int, y: Int, colour: Color)
  fun getFrame(): BufferedImage
}