mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-04-23 15:36:07 +00:00
Notably also adds some metadata files for NixOS * add support for linux clang cross compiles * add linux clang instructions * un-capitalize Mob.horse.* * update the description in flake.nix --------- Co-authored-by: Loki <lokirautio@gmail.com>
27 lines
734 B
C++
27 lines
734 B
C++
#include "stdafx.h"
|
|
|
|
#include "../../../Minecraft.World/net.minecraft.world.level.tile.entity.h"
|
|
#include "../../../Minecraft.World/SharedConstants.h"
|
|
#include "../../../Minecraft.World/net.minecraft.world.item.alchemy.h"
|
|
#include "XUI_Ctrl_BrewProgress.h"
|
|
|
|
int CXuiCtrlBrewProgress::GetValue()
|
|
{
|
|
void* pvUserData;
|
|
this->GetUserData( &pvUserData );
|
|
|
|
if( pvUserData != nullptr )
|
|
{
|
|
BrewingStandTileEntity *pBrewingStandTileEntity = static_cast<BrewingStandTileEntity *>(pvUserData);
|
|
|
|
return pBrewingStandTileEntity->getBrewTime();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void CXuiCtrlBrewProgress::GetRange(int *pnRangeMin, int *pnRangeMax)
|
|
{
|
|
*pnRangeMin = 0;
|
|
*pnRangeMax = PotionBrewing::BREWING_TIME_SECONDS * SharedConstants::TICKS_PER_SECOND;
|
|
} |