forked from jaildesigner-jailgames/jaildoctors_dilemma
linter
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
class Debug {
|
||||
private:
|
||||
// [SINGLETON] Objeto privado
|
||||
static Debug* debug_;
|
||||
static Debug* debug;
|
||||
|
||||
// Variables
|
||||
std::vector<std::string> slot_; // Vector con los textos a escribir
|
||||
@@ -41,7 +41,7 @@ class Debug {
|
||||
void setPos(SDL_FPoint p);
|
||||
|
||||
// Getters
|
||||
bool getEnabled() { return enabled_; }
|
||||
bool getEnabled() const { return enabled_; }
|
||||
|
||||
// Setters
|
||||
void add(std::string text) { slot_.push_back(text); }
|
||||
|
||||
Reference in New Issue
Block a user