Files
mcpe/source/client/renderer/FoliageColor.hpp
Brent afe875e4fa iOS Support (#113)
undefined
2024-01-22 17:22:41 +02:00

26 lines
362 B
C++

#pragma once
#include <stdint.h>
#include "client/renderer/Texture.hpp"
class FoliageColor
{
public:
static bool isAvailable();
static void init(Texture texture);
static uint32_t get(double x, double y);
static uint32_t getEvergreenColor();
static uint32_t getBirchColor();
static uint32_t getDefaultColor();
private:
static Texture texture;
};