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