13 lines
270 B
C++
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;
|
|
} |