Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 554 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 554 Bytes

Ylinor - The Ylinor voxel MMORPG

Setting up development environment

You need Java 8

First import the project. Then :

  • Create a "Client" run configuration, with as run directory : "client/core/assets".
  • Create a "Server" run configuration, with as run directory : "server/run/". If you want to test the client with your local server, you need to add --debug to the program arguments of the Client.

Contributing


Do not do this :

if (condition)
	do that;

Do this :

if (condition)
{
	do that;
}