blob: d4d04b5f49ee81a0e575b3f0337e753bd6e20d3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package types
import "github.com/pektezol/bitreader"
type NetSplitScreenUser struct {
PlayerSlot bool
}
func ParseNetSplitScreenUser(reader *bitreader.ReaderType) NetSplitScreenUser {
return NetSplitScreenUser{
PlayerSlot: reader.TryReadBool(),
}
}
|