mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 19:21:15 +00:00
15 lines
161 B
C++
15 lines
161 B
C++
#ifndef JUKEBOX_H
|
|
#define JUKEBOX_H
|
|
|
|
#include "legoentity.h"
|
|
|
|
class JukeBox : public LegoEntity
|
|
{
|
|
public:
|
|
JukeBox();
|
|
|
|
// SIZE 0x50
|
|
};
|
|
|
|
#endif // JUKEBOX_H
|