From e74bdeb7be15646cb55d1f45196cbd75d2a1acd8 Mon Sep 17 00:00:00 2001 From: Daniel Vidmar Date: Mon, 26 Jan 2015 00:25:55 -0500 Subject: [PATCH] Forgotten block modifications. Github left this behind. --- TrueCraft.API/Logic/IBlockProvider.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TrueCraft.API/Logic/IBlockProvider.cs b/TrueCraft.API/Logic/IBlockProvider.cs index f56a422..551190d 100644 --- a/TrueCraft.API/Logic/IBlockProvider.cs +++ b/TrueCraft.API/Logic/IBlockProvider.cs @@ -8,6 +8,8 @@ namespace TrueCraft.API.Logic double BlastResistance { get; } double Hardness { get; } byte Luminance { get; } + bool Opaque { get; } + byte LightModifier { get; } string DisplayName { get; } Tuple GetTextureMap(byte metadata); }