mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-04 00:52:54 +02:00
Setting code formatting standard to allman.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/* This file is subject to the terms and conditions defined in
|
||||
* file 'LICENSE.txt', which is part of this source code package.
|
||||
*/
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
@@ -8,12 +8,12 @@
|
||||
class Sound
|
||||
{
|
||||
public:
|
||||
Sound(std::string file);
|
||||
virtual ~Sound();
|
||||
void Play();
|
||||
bool Allocate();
|
||||
bool Free();
|
||||
Sound(std::string file);
|
||||
virtual ~Sound();
|
||||
void Play();
|
||||
bool Allocate();
|
||||
bool Free();
|
||||
private:
|
||||
std::string File;
|
||||
Mix_Chunk *Chunk;
|
||||
std::string File;
|
||||
Mix_Chunk *Chunk;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user