summaryrefslogtreecommitdiff
path: root/project2/common/library.h
blob: c6d927866068a5e3a7d9eebe8bfde73400eeb53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef LIBRARY_LOADER_H
#define LIBRARY_LOADER_H

#include "scriptLoader.h"

class Library : public SourceObject {
	public:
		Library(ScriptNodePtr p);
		~Library();

	private:
		void * handle;
};
extern STORAGEOF(Library) libraries;

#endif