mirror of
https://github.com/m1k1o/neko.git
synced 2025-05-03 20:35:54 +02:00
22 lines
243 B
Go
22 lines
243 B
Go
package webrtc
|
|
|
|
type dataHeader struct {
|
|
Event uint8
|
|
Length uint16
|
|
}
|
|
|
|
type dataMouseMove struct {
|
|
dataHeader
|
|
X int16
|
|
Y int16
|
|
}
|
|
|
|
type dataMouseKey struct {
|
|
dataHeader
|
|
Key uint8
|
|
}
|
|
|
|
type dataKeyboardKey struct {
|
|
dataHeader
|
|
Key uint16
|
|
}
|