aboutsummaryrefslogtreecommitdiff
path: root/build/android/res/drawable-xhdpi
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2015-04-17 00:52:48 -0400
committerkwolekr <kwolekr@minetest.net>2015-04-17 00:53:05 -0400
commit406d9ba87b9f6e57b86c6282bf157e3341aa195c (patch)
treede88e4136a31c3e350a0257301b134555706ae82 /build/android/res/drawable-xhdpi
parentf0a1379e5a9ebc954e95d07c1ad5d71587adc6bc (diff)
downloadminetest-406d9ba87b9f6e57b86c6282bf157e3341aa195c.tar.gz
minetest-406d9ba87b9f6e57b86c6282bf157e3341aa195c.tar.bz2
minetest-406d9ba87b9f6e57b86c6282bf157e3341aa195c.zip
Schematics: Remove referenced schematics from Decorations on clear
Diffstat (limited to 'build/android/res/drawable-xhdpi')
0 files changed, 0 insertions, 0 deletions
hl ppc">#define QVT_SHORTCUTTER_HEADER #include "quicktune.h" class QuicktuneShortcutter { private: std::vector<std::string> m_names; u32 m_selected_i; std::string m_message; public: bool hasMessage() { return m_message != ""; } std::string getMessage() { std::string s = m_message; m_message = ""; if(s != "") return std::string("[quicktune] ") + s; return ""; } std::string getSelectedName() { if(m_selected_i < m_names.size()) return m_names[m_selected_i]; return "(nothing)"; } void next() { m_names = getQuicktuneNames(); if(m_selected_i < m_names.size()-1) m_selected_i++; else m_selected_i = 0; m_message = std::string("Selected \"")+getSelectedName()+"\""; } void prev() { m_names = getQuicktuneNames(); if(m_selected_i > 0) m_selected_i--; else m_selected_i = m_names.size()-1; m_message = std::string("Selected \"")+getSelectedName()+"\""; } void inc() { QuicktuneValue val = getQuicktuneValue(getSelectedName()); val.relativeAdd(0.05);