mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-30 14:44:31 +02:00
12 lines
318 B
C++
12 lines
318 B
C++
|
|
#include "packetTypes.h"
|
|
#include "ConfigStickAxes.h"
|
|
|
|
// UDP port on local machine where downstream ConfigStickAxesMsg should be sent
|
|
unsigned ConfigStickAxes::udpPort = 0;
|
|
|
|
ConfigStickAxes::ConfigStickAxes(int port) : PacketHandler("", port, 0x02, PKT_ID_CONFIG_STICK_AXES)
|
|
{
|
|
ConfigStickAxes::udpPort = port;
|
|
}
|