From 20207e2098ddbb2a503435c937509ec3b2908d05 Mon Sep 17 00:00:00 2001 From: Misa Date: Tue, 3 Nov 2020 08:56:53 -0800 Subject: [PATCH] Remove unused attributes author/description/title from editorclass The author, description, and title of the level are actually stored on the EditorData instance. These attributes do nothing and should be removed. --- desktop_version/src/editor.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/desktop_version/src/editor.h b/desktop_version/src/editor.h index 7af9d1cf..4986ddcf 100644 --- a/desktop_version/src/editor.h +++ b/desktop_version/src/editor.h @@ -240,10 +240,6 @@ class editorclass{ int sbx, sby; int pagey; - std::string author; - std::string description; - std::string title; - //Functions for interfacing with the script: void addhook(std::string t); void removehook(std::string t);