Yeah, I kinda gave up, i will fix it later or something I recon

This commit is contained in:
2026-02-09 23:23:45 +00:00
parent 2952ec7085
commit 97caeafd58
16 changed files with 464 additions and 103 deletions
@@ -0,0 +1,20 @@
package packets
import (
"esdi/peripheral/communication/constvar"
)
type NewWindowID struct {
StartMarker byte
ID int16
EndMarker byte
}
func (pkt *NewWindowID) Validate() bool {
if pkt.StartMarker != constvar.StartOfText ||
pkt.EndMarker != constvar.EndOfText {
return false
}
return true
}