summaryrefslogtreecommitdiffstats
path: root/ProtoProxy/ProtoProxy.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-02 17:38:28 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-02 17:38:28 +0200
commite1c83be32d5435d3c2bbc1468b24ba8c0728bac3 (patch)
treede85217613aa2e95eceadc6452602bf93e07f96b /ProtoProxy/ProtoProxy.cpp
parentToLua does not like the override keyword :( (diff)
downloadcuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar
cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.gz
cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.bz2
cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.lz
cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.xz
cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.zst
cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.zip
Diffstat (limited to 'ProtoProxy/ProtoProxy.cpp')
-rw-r--r--ProtoProxy/ProtoProxy.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/ProtoProxy/ProtoProxy.cpp b/ProtoProxy/ProtoProxy.cpp
new file mode 100644
index 000000000..abc4a7606
--- /dev/null
+++ b/ProtoProxy/ProtoProxy.cpp
@@ -0,0 +1,30 @@
+
+// ProtoProxy.cpp
+
+// Implements the main app entrypoint
+
+#include "Globals.h"
+#include "Server.h"
+
+
+
+
+
+int main(int argc, char ** argv)
+{
+ cServer Server;
+ int res = Server.Init(25565, 25564);
+ if (res != 0)
+ {
+ printf("Server initialization failed: %d", res);
+ return res;
+ }
+
+ Server.Run();
+
+ return 0;
+}
+
+
+
+