From 124fa5753fc3885df70f1e406bcb352c64f18fec Mon Sep 17 00:00:00 2001 From: Camotoy <20743703+DoctorMacc@users.noreply.github.com> Date: Fri, 4 Sep 2020 18:52:41 -0400 Subject: [PATCH] Updated Developer Guide (markdown) --- Developer-Guide.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Developer-Guide.md b/Developer-Guide.md index f981aa6..8246ff7 100644 --- a/Developer-Guide.md +++ b/Developer-Guide.md @@ -5,9 +5,8 @@ 4. Run `mvn clean install` and locate to the `bootstrap`, then your desired Geyser version, then `target` folder. ## Project layout -* `bootstrap` is where we hold the specific platform code. So if you're porting Geyser to a new platform, you likely want to be in here. -* `common` is where some data types are and other parts used in other plugins such as Floodgate. -* `connector` is where connections are handled and the data conversion is done. If adding in some new packet conversions you likely want to be in here. +* `bootstrap` is where we hold the specific platform code. So if you're porting Geyser to a new platform, or working with platform-specific code, you likely want to be in here. +* `connector` is where connections are handled and the data conversion is done. The majority of Geyser work is held here. # Compiler Tools