File diff r21027:e87e97e6befd → r21028:e5db3f83cafa
src/sound/sound_driver.hpp
Show inline comments
 
@@ -12,13 +12,13 @@
 
#ifndef SOUND_SOUND_DRIVER_HPP
 
#define SOUND_SOUND_DRIVER_HPP
 

	
 
#include "../driver.h"
 

	
 
/** Base for all sound drivers. */
 
class SoundDriver: public Driver {
 
class SoundDriver : public Driver {
 
public:
 
	/** Called once every tick */
 
	virtual void MainLoop() {}
 
};
 

	
 
extern SoundDriver *_sound_driver;