mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
23 lines
243 B
Go
23 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
|
||
|
}
|