mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 11:26:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			381 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			381 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef GAME_SCRIPT_MISCEXTENSIONS_H
 | 
						|
#define GAME_SCRIPT_MISCEXTENSIONS_H
 | 
						|
 | 
						|
namespace Compiler
 | 
						|
{
 | 
						|
    class Extensions;
 | 
						|
}
 | 
						|
 | 
						|
namespace Interpreter
 | 
						|
{
 | 
						|
    class Interpreter;
 | 
						|
}
 | 
						|
 | 
						|
namespace MWScript
 | 
						|
{
 | 
						|
    namespace Misc
 | 
						|
    {
 | 
						|
        void registerExtensions (Compiler::Extensions& extensions);
 | 
						|
        
 | 
						|
        void installOpcodes (Interpreter::Interpreter& interpreter);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
 |