diff --git a/server/README.md b/server/README.md new file mode 100644 index 0000000..f1649e0 --- /dev/null +++ b/server/README.md @@ -0,0 +1,4 @@ +# Server + +This package provide a very basic framework for server development. +For more example, go to [this repo](https://github.com/go-mc/server). \ No newline at end of file diff --git a/server/server.go b/server/server.go index 5cd9652..ac07e23 100644 --- a/server/server.go +++ b/server/server.go @@ -2,7 +2,7 @@ // You can build the server you want by combining the various functional modules provided here. // An example can be found in examples/frameworkServer. // -// This package is under rapid development, and any API may be subject to break changes +// # This package is under rapid development, and any API may be subject to break changes // // A server is roughly divided into two parts: Gate and GamePlay // @@ -23,7 +23,7 @@ // (that is, after the LoginSuccess package is sent), // and is responsible for functions including player status, chunk management, keep alive, chat, etc. // -// The implement of Gameplay will provide later. +// The implement of Gameplay is provided at https://github.com/go-mc/server. package server import (