2022-09-13 04:26:54 +00:00
|
|
|
#ifndef _CINPUTGENERATOR_HPP
|
|
|
|
#define _CINPUTGENERATOR_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
class COsContext;
|
|
|
|
|
|
|
|
class CInputGenerator {
|
|
|
|
public:
|
|
|
|
CInputGenerator(COsContext*, f32, f32);
|
|
|
|
|
|
|
|
private:
|
|
|
|
u8 pad[0x14];
|
|
|
|
};
|
|
|
|
|
2022-09-18 06:05:46 +00:00
|
|
|
#endif
|