FarmFighter/server/server.cpp

8 lines
144 B
C++
Raw Normal View History

2024-08-29 22:27:01 -06:00
#include <stdio.h>
int main() {
printf("Server starting...\n");
printf("Press any key to exit...\n");
scanf_s("0");
return 0;
}