REminiscence/fs.h

26 lines
404 B
C

/*
* REminiscence - Flashback interpreter
* Copyright (C) 2005-2019 Gregory Montoir (cyx@users.sourceforge.net)
*/
#ifndef FS_H__
#define FS_H__
#include "intern.h"
struct FileSystem_impl;
struct FileSystem {
FileSystem(const char *dataPath);
~FileSystem();
FileSystem_impl *_impl;
char *findPath(const char *filename) const;
bool exists(const char *filename) const;
};
#endif // FS_H__