mirror of
https://github.com/glest/glest-source.git
synced 2025-08-19 22:51:24 +02:00
Fixed the god-awful indentation
This commit is contained in:
@@ -15,18 +15,23 @@
|
||||
#include "sound_player.h"
|
||||
#include "leak_dumper.h"
|
||||
|
||||
namespace Shared{ namespace Sound{
|
||||
namespace Shared {
|
||||
namespace Sound {
|
||||
|
||||
// =====================================================
|
||||
// class SoundFactory
|
||||
// =====================================================
|
||||
// =====================================================
|
||||
// class SoundFactory
|
||||
// =====================================================
|
||||
|
||||
class SoundFactory{
|
||||
public:
|
||||
virtual ~SoundFactory(){}
|
||||
virtual SoundPlayer *newSoundPlayer() {return NULL;}
|
||||
};
|
||||
class SoundFactory {
|
||||
public:
|
||||
virtual ~SoundFactory() {
|
||||
}
|
||||
virtual SoundPlayer *newSoundPlayer() {
|
||||
return NULL;
|
||||
}
|
||||
};
|
||||
|
||||
}}//end namespace
|
||||
}
|
||||
}//end namespace
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user