commit 361330460e1eca295a2dfef3fd9a8bad913b14d1 Author: Sky Johnson Date: Sun Aug 31 20:59:20 2025 -0500 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..52765f9 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# EQ2 Protocol + +This library is meant to replicate EverQuest 2's UDP protocol. The work here is based on the immense +work done by contributors to the EQ2Emu project. I am porting it to Go with the idea of a simpler, faster +development pipeline - and as a personal experiment. \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..296403e --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.sharkk.net/EQ2/Protocol + +go 1.25.0