mirror of
https://github.com/chev2/terraria-mods.git
synced 2025-10-30 08:11:37 +00:00
- 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
24 lines
No EOL
541 B
C#
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();
|
|
}
|
|
}
|
|
} |