mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 13:26:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			243 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			243 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef __FILEOPS_H_
 | 
						|
#define __FILEOPS_H_
 | 
						|
 | 
						|
#include <string>
 | 
						|
 | 
						|
/// Check if a given path is an existing file (not a directory)
 | 
						|
bool isFile(const char *name);
 | 
						|
 | 
						|
#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
 | 
						|
std::string macBundlePath();
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |