mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-11 18:43:02 +00:00
13 lines
270 B
C++
13 lines
270 B
C++
#include "stdafx.h"
|
|
|
|
#include "DirectionalTile.h"
|
|
|
|
DirectionalTile::DirectionalTile(int id, Material *material, bool isSolidRender) : Tile(id, material, isSolidRender)
|
|
{
|
|
setLightBlock(0);
|
|
}
|
|
|
|
int DirectionalTile::getDirection(int data)
|
|
{
|
|
return data & DIRECTION_MASK;
|
|
} |