mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 18:53:40 +00:00
16 lines
363 B
C++
16 lines
363 B
C++
#pragma once
|
|
|
|
class FoliageColor {
|
|
// 4J Stu - We don't want to use this any more
|
|
// private:
|
|
// static intArray pixels;
|
|
//
|
|
// public:
|
|
// static void init(intArray pixels);
|
|
// static int get(double temp, double rain);
|
|
|
|
public:
|
|
static int getEvergreenColor();
|
|
static int getBirchColor();
|
|
static int getDefaultColor();
|
|
}; |