11 lines
197 B
C++
11 lines
197 B
C++
#pragma once
|
|
|
|
namespace Passer::Control {
|
|
|
|
class ControlClient {
|
|
public:
|
|
unsigned char *buffer;
|
|
bool SendMsg(unsigned char *buffer, unsigned char bufferSize);
|
|
};
|
|
|
|
} // namespace Passer::Control
|