mirror of
https://github.com/encounter/sms-dtk.git
synced 2026-03-30 11:38:31 -07:00
19 lines
254 B
C++
19 lines
254 B
C++
#ifndef BASEPARAM_HPP
|
|
#define BASEPARAM_HPP
|
|
|
|
#include "dolphin.h"
|
|
|
|
#include "types.h"
|
|
#include "JSystem/JSUMemoryStream.hpp"
|
|
|
|
class TBaseParam {
|
|
public:
|
|
virtual void load(JSUMemoryInputStream&);
|
|
|
|
u16 keyCode;
|
|
char *name;
|
|
TBaseParam *next;
|
|
};
|
|
|
|
#endif
|