the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 39 lines 389 B view raw
1#include "stdafx.h" 2 3#include "Golem.h" 4 5 6 7Golem::Golem(Level *level) : PathfinderMob(level) 8{ 9} 10 11 12void Golem::causeFallDamage(float distance) 13{ 14} 15 16int Golem::getAmbientSound() 17{ 18 return -1; 19} 20 21int Golem::getHurtSound() 22{ 23 return -1; 24} 25 26int Golem::getDeathSound() 27{ 28 return -1; 29} 30 31int Golem::getAmbientSoundInterval() 32{ 33 return 20 * 6; 34} 35 36bool Golem::removeWhenFarAway() 37{ 38 return false; 39}