mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
20 lines
249 B
C++
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;
|
|
};
|
|
|