Big cleanup of rampant using std.
This commit is contained in:
parent
fcd1225370
commit
453c50c563
15 changed files with 49 additions and 40 deletions
4
gui.hpp
4
gui.hpp
|
@ -7,6 +7,8 @@
|
|||
#include <SFML/Audio.hpp>
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
using std::string;
|
||||
|
||||
class SoundQuip {
|
||||
public:
|
||||
sf::Sound sound;
|
||||
|
@ -21,7 +23,7 @@ public:
|
|||
};
|
||||
|
||||
class GUI {
|
||||
vector<string> lines;
|
||||
std::vector<string> lines;
|
||||
|
||||
SoundQuip you_died_sound;
|
||||
SoundQuip build_works_sound;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue