A barebone server for talking with GameMaker: Studio games written in Java
Add the following to your build.gradle
repositories { maven { url 'https://jitpack.io' } } dependencies { implementation 'dev.forbit:gm-server:1.1' } Add the following to your pom.xml
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <dependencies> <dependency> <groupId>dev.forbit</groupId> <artifactId>gm-server</artifactId> <version>1.1</version> </dependency> </dependencies>Inside the examples directory, is the basic-raw-server, which implements a one-room multiplayer lobby, where people can join and move around.
If you'd like a guided breakdown of how to implement this, or where to start, check out this wiki article
The source code is licensed under the MIT License
