terraria-mods/LifeSourcesLight/LifeSourcesLight.cs
Chev 5d838fb613 LifeSourcesLight v1.1.0
- Formatted code a bit
- Updated description to include changelog section
- Added basic config to allow users to turn off the lights for each of the two tile types individually
2022-08-26 18:25:47 -07:00

24 lines
No EOL
541 B
C#

using Terraria.ModLoader;
namespace LifeSourcesLight
{
public class LifeSourcesLight : Mod
{
internal static bool _enableHeartCrystalLight;
public static bool EnableHeartCrystalLight
{
get { return _enableHeartCrystalLight; }
}
internal static bool _enableLifeFruitLight;
public static bool EnableLifeFruitLight
{
get { return _enableLifeFruitLight; }
}
public override void Load()
{
base.Load();
}
}
}