mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-30 06:34:38 +02:00
17 lines
257 B
C++
17 lines
257 B
C++
#ifndef SET_TELEM_UNITS_H
|
|
#define SET_TELEM_UNITS_H
|
|
|
|
#include "PacketHandler.h"
|
|
|
|
class SetTelemUnits : public PacketHandler
|
|
{
|
|
public:
|
|
SetTelemUnits(int port);
|
|
|
|
void set(string &setting);
|
|
|
|
static unsigned udpPort;
|
|
};
|
|
|
|
#endif // SET_TELEM_UNITS_H
|