mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 03:31:15 +00:00
14 lines
221 B
C++
14 lines
221 B
C++
#ifndef LEGOWORLD_H
|
|
#define LEGOWORLD_H
|
|
|
|
#include "legoentity.h"
|
|
|
|
class LegoWorld : public LegoEntity
|
|
{
|
|
public:
|
|
__declspec(dllexport) LegoWorld();
|
|
__declspec(dllexport) virtual ~LegoWorld();
|
|
};
|
|
|
|
#endif // LEGOWORLD_H
|