FarmFighter/client/client.cpp

13 lines
270 B
C++
Raw Permalink Normal View History

2024-08-29 22:27:01 -06:00
#include <stdio.h>
2024-08-30 11:48:34 -06:00
#define ENET_IMPLEMENTATION
#include <enet.h>
2024-08-29 22:27:01 -06:00
int main() {
printf("This is the farm fighter client!\n");
2024-08-30 11:48:34 -06:00
if (enet_initialize() != 0) {
printf("Error init enet\n");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
2024-08-29 22:27:01 -06:00
}