FeatherMC/src/Main.cpp

14 lines
268 B
C++

#include <stdio.h>
#include "config/ServerProperties.h"
using namespace Feather;
int main()
{
ServerProperties properties("server.properties");
properties.Save();
printf("Starting server on port %d\n", properties.serverPort.GetValue());
return 1;
}