mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
21 lines
506 B
C++
21 lines
506 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
|
|
class LightSourceTile : public Tile
|
|
{
|
|
public:
|
|
LightSourceTile(int id);
|
|
|
|
// Íåò êîëëèçèè
|
|
AABB* getAABB(Level* level, int x, int y, int z) override;
|
|
AABB* getTileAABB(Level* level, int x, int y, int z) override;
|
|
|
|
// Íåò âèçóàëà
|
|
bool isSolidRender(bool isServerLevel) override;
|
|
bool isCubeShaped() override;
|
|
int getRenderShape() override;
|
|
|
|
// Íå ìåøàåò äâèæåíèþ
|
|
bool isPathfindable(LevelSource* level, int x, int y, int z) override;
|
|
};
|