mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
12 lines
391 B
C
12 lines
391 B
C
|
#ifndef LEGONAVCONTROLLER_H
|
||
|
#define LEGONAVCONTROLLER_H
|
||
|
|
||
|
class LegoNavController
|
||
|
{
|
||
|
public:
|
||
|
__declspec(dllexport) static void GetDefaults(int *,float *,float *,float *,float *,float *,float *,float *,float *,float *,unsigned char *);
|
||
|
__declspec(dllexport) static void SetDefaults(int,float,float,float,float,float,float,float,float,float,unsigned char);
|
||
|
};
|
||
|
|
||
|
#endif // LEGONAVCONTROLLER_H
|