mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-02 15:55:30 +00:00
16 lines
279 B
C
16 lines
279 B
C
//
|
|
// Created by jojos38 on 28.01.2020.
|
|
//
|
|
|
|
#ifndef NETWORK_H
|
|
#define NETWORK_H
|
|
|
|
#include "enet/enet.h"
|
|
#pragma comment(lib,"ws2_32.lib")
|
|
#pragma comment(lib,"winmm.lib")
|
|
#pragma comment(lib,"enet.lib")
|
|
|
|
void startRUDP(char host[], int port);
|
|
|
|
#endif // NETWORK_H
|