forked from Kolyah35/minecraft-pe-0.6.1
Added 3 Fog Choices (Pocket) (Java) (Unknown that was unused) Restored Java Beta Sky Color code that was unused that depends on biome temperature (choosable using Java fog) Tile Shadows and Entity Shadows that appear beneath them have been restored and fixed from the unused code, toggleable by turning fancy graphics on or off Entities will now render flames on themselves when on fire, including the player Added option to use Java Style Item Count text and position in tweaks - fileshredder
15 lines
302 B
C++
15 lines
302 B
C++
#pragma once
|
|
|
|
class Color
|
|
{
|
|
private:
|
|
int colour;
|
|
|
|
public:
|
|
//Creates an opaque sRGB color with the specified red, green, and blue values in the range (0.0 - 1.0).
|
|
Color( float r, float g, float b);
|
|
Color( int r, int g, int b);
|
|
|
|
static Color getHSBColor(float h, float s, float b);
|
|
int getRGB();
|
|
}; |