mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
11 lines
176 B
C++
11 lines
176 B
C++
#ifndef LEGOWORLD_H
|
|
#define LEGOWORLD_H
|
|
|
|
class LegoWorld
|
|
{
|
|
public:
|
|
__declspec(dllexport) LegoWorld();
|
|
__declspec(dllexport) virtual ~LegoWorld();
|
|
};
|
|
|
|
#endif // LEGOWORLD_H
|