mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-03-21 20:29:52 -04: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
|