mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
12 lines
163 B
C++
12 lines
163 B
C++
#ifndef RADIO_H
|
|
#define RADIO_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
// VTABLE 0x100d6d10
|
|
class Radio : public MxCore {
|
|
public:
|
|
virtual ~Radio() override;
|
|
};
|
|
|
|
#endif // RADIO_H
|