From 832449c01d2671452681550fd1e636650a25e627 Mon Sep 17 00:00:00 2001 From: Cat Flynn Date: Tue, 23 Mar 2021 15:09:19 +0000 Subject: [PATCH] remove editor namespace lol --- game/Assets/Scripts/Traps/ArrowWall.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/game/Assets/Scripts/Traps/ArrowWall.cs b/game/Assets/Scripts/Traps/ArrowWall.cs index 39eab34..bd4eaaf 100644 --- a/game/Assets/Scripts/Traps/ArrowWall.cs +++ b/game/Assets/Scripts/Traps/ArrowWall.cs @@ -1,10 +1,9 @@ using System; using System.Collections; using System.Collections.Generic; -using UnityEditorInternal; using UnityEngine; -public partial class ArrowWall : MonoBehaviour +public class ArrowWall : MonoBehaviour { // delay between trap triggering and firing [SerializeField] private float _delay = 1.0f;