mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-08 11:47:14 +00:00
11 lines
331 B
C++
11 lines
331 B
C++
#pragma once
|
|
#include "HalfTransparentTile.h"
|
|
#include "Material.h"
|
|
|
|
class CoralTile : public HalfTransparentTile {
|
|
public:
|
|
CoralTile(int id);
|
|
virtual int getColor(LevelSource* level, int x, int y, int z);
|
|
virtual int getColor(LevelSource* level, int x, int y, int z,
|
|
int data); // 4J added
|
|
}; |