mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-04 14:09:47 +03:00
* 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>
20 lines
248 B
C++
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;
|
|
};
|
|
|