mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-29 22:24:32 +02:00
12 lines
315 B
C++
12 lines
315 B
C++
|
|
#include "packetTypes.h"
|
|
#include "ConfigSweepTime.h"
|
|
|
|
// UDP port on local machine where downstream ConfigSweepTime should be sent
|
|
unsigned ConfigSweepTime::udpPort = 0;
|
|
|
|
ConfigSweepTime::ConfigSweepTime(int port) : PacketHandler("", port, 0x02, PKT_ID_CONFIG_SWEEP_TIME)
|
|
{
|
|
ConfigSweepTime::udpPort = port;
|
|
}
|