From b866ff9ed8d6a47b44de4c2a88bfff8fde6ddb47 Mon Sep 17 00:00:00 2001 From: William Date: Sun, 9 Nov 2025 10:37:43 -0500 Subject: [PATCH] Remove includes preventing build --- Assets/Scripts/General/GlobalConfigFile.cs | 1 - Assets/Scripts/Opponent/Opponent.cs | 1 - Assets/Scripts/Status/Slow.cs | 1 - Assets/Scripts/UnitTree/UpgradePlacementButton.cs | 1 - 4 files changed, 4 deletions(-) diff --git a/Assets/Scripts/General/GlobalConfigFile.cs b/Assets/Scripts/General/GlobalConfigFile.cs index 3cb5052..f6840b9 100644 --- a/Assets/Scripts/General/GlobalConfigFile.cs +++ b/Assets/Scripts/General/GlobalConfigFile.cs @@ -1,6 +1,5 @@ using System.Collections; using System.Collections.Generic; -using UnityEditorInternal; using UnityEngine; [CreateAssetMenu(menuName = project_name + "/Global Config")] diff --git a/Assets/Scripts/Opponent/Opponent.cs b/Assets/Scripts/Opponent/Opponent.cs index e5e313d..6d845f8 100644 --- a/Assets/Scripts/Opponent/Opponent.cs +++ b/Assets/Scripts/Opponent/Opponent.cs @@ -1,6 +1,5 @@ using System.Collections; using System.Collections.Generic; -using UnityEditorInternal; using UnityEngine; public class Opponent : Entity diff --git a/Assets/Scripts/Status/Slow.cs b/Assets/Scripts/Status/Slow.cs index bc4b4f3..0a42ff2 100644 --- a/Assets/Scripts/Status/Slow.cs +++ b/Assets/Scripts/Status/Slow.cs @@ -1,6 +1,5 @@ using System.Collections; using System.Collections.Generic; -using Unity.VisualScripting.YamlDotNet.Core.Tokens; using UnityEngine; public class Slow : Status diff --git a/Assets/Scripts/UnitTree/UpgradePlacementButton.cs b/Assets/Scripts/UnitTree/UpgradePlacementButton.cs index c8e31e9..05ce2f8 100644 --- a/Assets/Scripts/UnitTree/UpgradePlacementButton.cs +++ b/Assets/Scripts/UnitTree/UpgradePlacementButton.cs @@ -3,7 +3,6 @@ using TMPro; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; -using static PlasticGui.LaunchDiffParameters; public class UpgradePlacementButton : MonoBehaviour, IPointerClickHandler, IPointerEnterHandler, IPointerExitHandler {