Add beacon colors

This commit is contained in:
James Seibel
2024-07-09 07:33:17 -05:00
parent f144a9ebc1
commit b762c0561d
5 changed files with 102 additions and 17 deletions
@@ -22,6 +22,8 @@ package testItems.lightingEngine;
import com.seibel.distanthorizons.core.wrapperInterfaces.block.IBlockStateWrapper;
import tests.LightingEngineTest;
import java.awt.*;
/**
* @see LightingEngineTest
* @see LightingTestChunkWrapper
@@ -109,6 +111,11 @@ public class LightingTestBlockStateWrapper implements IBlockStateWrapper
@Override
public boolean isBeaconBaseBlock() { throw new UnsupportedOperationException("Not Implemented"); }
@Override
public Color getMapColor() { throw new UnsupportedOperationException("Not Implemented"); }
@Override
public boolean isGlassBlock() { throw new UnsupportedOperationException("Not Implemented"); }
}