mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-30 04:54:44 +00:00
reimplement aether stuff from personal repo
This commit is contained in:
26
Minecraft.World/GoldAercloudTile.cpp
Normal file
26
Minecraft.World/GoldAercloudTile.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#include "stdafx.h"
|
||||
#include "GoldAercloudTile.h"
|
||||
|
||||
GoldAercloudTile::GoldAercloudTile(int id) : AercloudTile(id)
|
||||
{
|
||||
}
|
||||
|
||||
int GoldAercloudTile::getColor() const
|
||||
{
|
||||
return 0xFFEF91; // Gold
|
||||
}
|
||||
|
||||
int GoldAercloudTile::getColor(int auxData)
|
||||
{
|
||||
return 0xFFEF91;
|
||||
}
|
||||
|
||||
int GoldAercloudTile::getColor(LevelSource *level, int x, int y, int z)
|
||||
{
|
||||
return 0xFFEF91;
|
||||
}
|
||||
|
||||
int GoldAercloudTile::getColor(LevelSource *level, int x, int y, int z, int data)
|
||||
{
|
||||
return 0xFFEF91;
|
||||
}
|
||||
Reference in New Issue
Block a user