FarmFighter/client/client.cpp
2024-08-30 11:48:34 -06:00

13 lines
270 B
C++

#include <stdio.h>
#define ENET_IMPLEMENTATION
#include <enet.h>
int main() {
printf("This is the farm fighter client!\n");
if (enet_initialize() != 0) {
printf("Error init enet\n");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}