December 2014 files

This commit is contained in:
Loki Rautio
2026-03-01 11:00:23 -06:00
parent b691c43c44
commit 8fd3ac6e37
2049 changed files with 260190 additions and 134787 deletions

View File

@@ -9,15 +9,29 @@ private:
{
eControl_FireSpreads,
eControl_TNT,
eControl_MobGriefing,
eControl_KeepInventory,
eControl_DoMobSpawning,
eControl_DoMobLoot,
eControl_DoTileDrops,
eControl_NaturalRegeneration,
eControl_DoDaylightCycle,
eControl_TeleportToPlayer,
eControl_TeleportToMe,
};
UIControl_CheckBox m_checkboxFireSpreads, m_checkboxTNT;
UIControl_CheckBox m_checkboxFireSpreads, m_checkboxTNT, m_checkboxMobGriefing, m_checkboxKeepInventory, m_checkboxDoMobSpawning, m_checkboxDoMobLoot, m_checkboxDoTileDrops, m_checkboxNaturalRegeneration, m_checkboxDoDaylightCycle;
UIControl_Button m_buttonTeleportToPlayer, m_buttonTeleportToMe;
UI_BEGIN_MAP_ELEMENTS_AND_NAMES(UIScene)
UI_MAP_ELEMENT( m_checkboxFireSpreads, "CheckboxFireSpreads")
UI_MAP_ELEMENT( m_checkboxTNT, "CheckboxTNT")
UI_MAP_ELEMENT( m_checkboxMobGriefing, "CheckboxMobGriefing")
UI_MAP_ELEMENT( m_checkboxKeepInventory, "CheckboxKeepInventory")
UI_MAP_ELEMENT( m_checkboxDoMobSpawning, "CheckboxMobSpawning")
UI_MAP_ELEMENT( m_checkboxDoMobLoot, "CheckboxMobLoot")
UI_MAP_ELEMENT( m_checkboxDoTileDrops, "CheckboxTileDrops")
UI_MAP_ELEMENT( m_checkboxNaturalRegeneration, "CheckboxNaturalRegeneration")
UI_MAP_ELEMENT( m_checkboxDoDaylightCycle, "CheckboxDayLightCycle")
UI_MAP_ELEMENT( m_buttonTeleportToPlayer, "TeleportToPlayer")
UI_MAP_ELEMENT( m_buttonTeleportToMe, "TeleportPlayerToMe")
UI_END_MAP_ELEMENTS_AND_NAMES()
@@ -27,6 +41,8 @@ public:
virtual EUIScene getSceneType() { return eUIScene_InGameHostOptionsMenu;}
virtual void updateTooltips();
virtual void handleReload();
protected:
// TODO: This should be pure virtual in this class
virtual wstring getMoviePath();