mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-06 16:55:37 +00:00
16 lines
208 B
C++
16 lines
208 B
C++
#ifndef _CINPUTGENERATOR_HPP
|
|
#define _CINPUTGENERATOR_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class COsContext;
|
|
|
|
class CInputGenerator {
|
|
public:
|
|
CInputGenerator(COsContext*, f32, f32);
|
|
|
|
private:
|
|
u8 pad[0x14];
|
|
};
|
|
|
|
#endif |