mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
11 lines
391 B
C++
11 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
|