mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-30 14:44:31 +02:00
14 lines
290 B
C++
14 lines
290 B
C++
#ifndef PARAM_STORED_VALS_H
|
|
#define PARAM_STORED_VALS_H
|
|
|
|
#include "PacketHandler.h"
|
|
#include "packetTypes.h"
|
|
|
|
class ParamStoredVals : public PacketHandler
|
|
{
|
|
public:
|
|
ParamStoredVals(int port) : PacketHandler("", port, 0x02, PKT_ID_PARAM_STORED_VALS){};
|
|
};
|
|
|
|
#endif // PARAM_STORED_VALS_H
|