Files
LegacyRenouveau/Minecraft.World/Abilities.h
T
Tranqlmao a4c746bee4 TU43 Structures, bug fixes & minor changes
- Elytra flight, damage, kinetic energy, pretty much any bug someone reported, paper doll, etc.
- Fossil & Igloo generation
- Texture interpolation
- Iggy mouse fix for world settings
- Neo branding on main screen
- Release build txt logger
- Debug mode spectator
- Several server fixes
- Flowerpot fixes
- Several more changes made in TU43
2026-07-11 19:30:16 -04:00

33 lines
505 B
C++

#pragma once
class CompoundTag;
class Abilities
{
public:
bool invulnerable;
bool flying;
bool mayfly;
bool instabuild;
bool mayBuild;
bool spectatorMode;
private:
float flyingSpeed;
float walkingSpeed;
public:
#ifdef _DEBUG_MENUS_ENABLED
bool debugflying;
#endif
Abilities();
void addSaveData(CompoundTag *parentTag);
void loadSaveData(CompoundTag *parentTag);
float getFlyingSpeed();
void setFlyingSpeed(float value);
float getWalkingSpeed();
void setWalkingSpeed(float value);
};