mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 07:56:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			355 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			355 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
local world = require('openmw.world')
 | 
						|
 | 
						|
return {
 | 
						|
    eventHandlers = {
 | 
						|
        Pause = function(tag) world.pause(tag) end,
 | 
						|
        Unpause = function(tag) world.unpause(tag) end,
 | 
						|
        SetGameTimeScale = function(scale) world.setGameTimeScale(scale) end,
 | 
						|
        SetSimulationTimeScale = function(scale) world.setSimulationTimeScale(scale) end,
 | 
						|
    },
 | 
						|
}
 |