summaryrefslogtreecommitdiff
path: root/GameCode/ApplyUpgradeIndicatorColor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'GameCode/ApplyUpgradeIndicatorColor.cs')
-rw-r--r--GameCode/ApplyUpgradeIndicatorColor.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/GameCode/ApplyUpgradeIndicatorColor.cs b/GameCode/ApplyUpgradeIndicatorColor.cs
deleted file mode 100644
index 065accb..0000000
--- a/GameCode/ApplyUpgradeIndicatorColor.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Shapes;
-using UnityEngine;
-
-[RequireComponent(typeof(Rectangle))]
-public class ApplyUpgradeIndicatorColor : MonoBehaviour
-{
- private void Start()
- {
- Rectangle component = GetComponent<Rectangle>();
- if ((bool)ColorAndLightManager.currentColorscheme)
- {
- component.Color = ColorAndLightManager.currentColorscheme.upgradeInteractorColor;
- }
- }
-}