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 }