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.
310 B · 20 lines
C
at master
1234567891011121314151617181920#pragma once
#include "Control.h"
class BodyControl : public Control{private: LivingEntity *mob; static const float maxClampAngle; int timeStill; float lastHeadY;
public: BodyControl(LivingEntity *mob);
void clientTick();
private: float clamp(float clampTo, float clampFrom, float clampAngle);};