Files
2023-09-11 19:36:23 -04:00

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