Add 1.21.70 support

This commit is contained in:
AkmalFairuz
2025-03-26 16:05:51 +07:00
parent c2e97e366d
commit 01dc76ffeb
16 changed files with 9435 additions and 33 deletions

17
legacyver/all.go Normal file
View File

@@ -0,0 +1,17 @@
package legacyver
import "github.com/sandertv/gophertunnel/minecraft"
// All returns a slice of all legacy protocol versions that are supported.
func All() []minecraft.Protocol {
return []minecraft.Protocol{
New776(),
New766(),
New748(),
New729(),
New712(),
New686(),
New685(),
New671(),
}
}