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

20 lines
249 B
C++

#pragma once
#include <stdint.h>
#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;
};