mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-23 18:46:11 +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()
|
|
}
|