Files
lime/project/include/ui/FileDialog.h
2015-08-22 14:32:35 -07:00

25 lines
471 B
C++

#ifndef LIME_UI_FILE_DIALOG_H
#define LIME_UI_FILE_DIALOG_H
#include <utils/QuickVec.h>
namespace lime {
class FileDialog {
public:
static const char* OpenFile (const char* filter = NULL, const char* defaultPath = NULL);
static void OpenFiles (QuickVec<const char*>* files, const char* filter = NULL, const char* defaultPath = NULL);
static const char* SaveFile (const char* filter = NULL, const char* defaultPath = NULL);
};
}
#endif