Fri, 15 Mar 2013 20:59:12 +0200
rename file-specific icons to file-*
0 | 1 | #ifndef __IO_H__ |
2 | #define __IO_H__ | |
3 | ||
4 | #include "common.h" | |
5 | #include "ldtypes.h" | |
6 | #include "str.h" | |
7 | ||
8 | // PROTOTYPES | |
9 | OpenFile* IO_FindLoadedFile (str name); | |
4
758302636564
improve opening, don't auto-load 55966.dat (:P)
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
10 | OpenFile* IO_OpenLDrawFile (str path); |
0 | 11 | LDObject* ParseLine (str zLine); |
12 | ||
13 | extern vector<OpenFile*> g_LoadedFiles; | |
14 | ||
15 | #endif |