mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-02 14:46:28 -05:00
9 lines
150 B
Go
9 lines
150 B
Go
|
package d2interface
|
||
|
|
||
|
type BitStream interface {
|
||
|
ReadBits(bitCount int) int
|
||
|
PeekByte() int
|
||
|
EnsureBits(bitCount int) bool
|
||
|
WasteBits(bitCount int)
|
||
|
}
|