mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
15 lines
195 B
C++
15 lines
195 B
C++
#pragma once
|
|
|
|
class headtrack
|
|
{
|
|
int joy_id = -1;
|
|
|
|
void find_joy();
|
|
float get_axis(const float *data, int count, int axis, float mul);
|
|
|
|
public:
|
|
headtrack();
|
|
|
|
void update();
|
|
};
|