REminiscence/fs.h

26 lines
404 B
C
Raw Permalink Normal View History

2016-03-20 17:00:00 +01:00
/*
* REminiscence - Flashback interpreter
2019-10-27 17:00:00 +01:00
* Copyright (C) 2005-2019 Gregory Montoir (cyx@users.sourceforge.net)
2015-08-02 18:00:00 +02:00
*/
#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__