mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 08:50:58 +00:00
20 lines
403 B
C
20 lines
403 B
C
|
#ifndef __qwaq_device_axisdata_h
|
||
|
#define __qwaq_device_axisdata_h
|
||
|
|
||
|
#include "ruamoko/qwaq/qwaq-input.h"
|
||
|
#include "ruamoko/qwaq/ui/tableview.h"
|
||
|
|
||
|
@class AxisView;
|
||
|
|
||
|
@interface AxisData : Object <TableViewDataSource>
|
||
|
{
|
||
|
int numaxes;
|
||
|
in_axisinfo_t *axes;
|
||
|
AxisView **axis_views;
|
||
|
}
|
||
|
+withDevice:(qwaq_devinfo_t *)device;
|
||
|
-updateAxis:(int)axis value:(int)value;
|
||
|
@end
|
||
|
|
||
|
#endif//__qwaq_device_axisdata_h
|