Cleaned up the love.graphics code that deals with love.window to be more consistent with the rest of the codebase.

This commit is contained in:
Alex Szpakowski
2015-07-24 21:40:55 -03:00
parent 354f83c1cb
commit f5abedaeeb
7 changed files with 22 additions and 40 deletions
-7
View File
@@ -175,9 +175,6 @@ public:
virtual void requestAttention(bool continuous) = 0;
//virtual static Window *createSingleton() = 0;
// No virtual statics, of course, but you are supposed to implement this static.
static bool getConstant(const char *in, Setting &out);
static bool getConstant(Setting in, const char *&out);
@@ -187,10 +184,6 @@ public:
static bool getConstant(const char *in, MessageBoxType &out);
static bool getConstant(MessageBoxType in, const char *&out);
protected:
static Window *singleton;
private:
static StringMap<Setting, SETTING_MAX_ENUM>::Entry settingEntries[];