mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-30 06:34:38 +02:00
15 lines
235 B
C++
15 lines
235 B
C++
#ifndef CONFIG_SWEEP_TIME_H
|
|
#define CONFIG_SWEEP_TIME_H
|
|
|
|
#include "PacketHandler.h"
|
|
|
|
class ConfigSweepTime : public PacketHandler
|
|
{
|
|
public:
|
|
ConfigSweepTime(int port);
|
|
|
|
static unsigned udpPort;
|
|
};
|
|
|
|
#endif // CONFIG_SWEEP_TIME_H
|