From fd002a54a8d54d0e7500091ff343ca771d064573 Mon Sep 17 00:00:00 2001 From: William Date: Sun, 9 Nov 2025 15:39:42 +0000 Subject: [PATCH] Remove includes preventing build (#20) Reviewed-on: https://gitea.clubconjure.com/Conjure/gather-and-defend/pulls/20 Co-authored-by: William Co-committed-by: William --- 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 {