Files
mcpe/source/client/renderer/GrassColor.hpp
jonkadelic e6ab1214af Biome colour and grass side tint options (#98)
* Added biome colour and grass side tint options

* Moved GrassColor and FoliageColor to client/renderer/

* * Fix some build issues.

* * Add the new files to the CMakeLists.txt

---------

Co-authored-by: iProgramInCpp <iprogramincpp@gmail.com>
2023-11-05 18:19:41 +02:00

20 lines
248 B
C++

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