mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 23:35:41 +00:00
14 lines
222 B
C++
14 lines
222 B
C++
//
|
|
// Created by Антон on 28.01.2020.
|
|
//
|
|
|
|
#include "main.h"
|
|
#include "network.h"
|
|
#include "logger.h"
|
|
|
|
int main() {
|
|
// ALL > DEBUG > INFO > WARN > ERROR > OFF
|
|
setLoggerLevel("ALL");
|
|
startRUDP("localhost", 30814);
|
|
}
|