mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-25 16:05:34 +00:00
21 lines
255 B
C++
21 lines
255 B
C++
#ifndef __URDE_CNESEMULATOR_HPP__
|
|
#define __URDE_CNESEMULATOR_HPP__
|
|
|
|
namespace urde
|
|
{
|
|
class CFinalInput;
|
|
|
|
namespace MP1
|
|
{
|
|
|
|
class CNESEmulator
|
|
{
|
|
public:
|
|
void ProcessUserInput(const CFinalInput& input, int);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __URDE_CNESEMULATOR_HPP__
|