From c4315a7afafcc9adff945b5e63800340f6c2c008 Mon Sep 17 00:00:00 2001 From: darkrose Date: Fri, 1 Jun 2012 23:10:53 +1000 Subject: Strip unneeded variables from NodeMetadata --- src/nodemetadata.h | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) (limited to 'src/nodemetadata.h') diff --git a/src/nodemetadata.h b/src/nodemetadata.h index 7fe5e2f50..e855eab9b 100644 --- a/src/nodemetadata.h +++ b/src/nodemetadata.h @@ -70,56 +70,10 @@ public: { return m_inventory; } - - // If non-empty, player can interact by using an inventory view - // See format in guiInventoryMenu.cpp. - std::string getInventoryDrawSpec() const - { - return m_inventorydrawspec; - } - void setInventoryDrawSpec(const std::string &text) - { - m_inventorydrawspec = text; - } - - // If non-empty, player can interact by using an form view - // See format in guiFormMenu.cpp. - std::string getFormSpec() const - { - return m_formspec; - } - void setFormSpec(const std::string &text) - { - m_formspec = text; - } - - // Called on client-side; shown on screen when pointed at - std::string getInfoText() const - { - return m_infotext; - } - void setInfoText(const std::string &text) - { - m_infotext = text; - } - - // Whether the related node and this metadata can be removed - bool getAllowRemoval() const - { - return m_allow_removal; - } - void setAllowRemoval(bool b) - { - m_allow_removal = b; - } private: std::map m_stringvars; Inventory *m_inventory; - std::string m_inventorydrawspec; - std::string m_formspec; - std::string m_infotext; - bool m_allow_removal; }; -- cgit v1.2.3