mirror of
https://github.com/leozide/leocad
synced 2024-12-30 22:23:45 +01:00
13 lines
203 B
C++
13 lines
203 B
C++
#ifndef _LC_LIBRARY_H_
|
|
#define _LC_LIBRARY_H_
|
|
|
|
class lcPiecesLibrary
|
|
{
|
|
public:
|
|
lcPiecesLibrary();
|
|
~lcPiecesLibrary();
|
|
|
|
bool OpenArchive(const char* LibPath);
|
|
};
|
|
|
|
#endif // _LC_LIBRARY_H_
|