Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
275 B · 21 lines
C++
at main
123456789101112131415161718192021#include "stdafx.h"#include "net.minecraft.world.entity.h"#include "JumpControl.h"
JumpControl::JumpControl(Mob *mob){ _jump = false;
this->mob = mob;}
void JumpControl::jump(){ _jump = true;}
void JumpControl::tick(){ mob->setJumping(_jump); _jump = false;}