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