mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-21 17:18:47 +00:00
9 lines
130 B
Go
9 lines
130 B
Go
package encoder
|
|
|
|
import "image"
|
|
|
|
type Encoder interface {
|
|
GetInputChan() chan *image.RGBA
|
|
GetOutputChan() chan []byte
|
|
Stop()
|
|
}
|