summaryrefslogtreecommitdiff
path: root/Assembly_CSharp/BuildingGhost.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assembly_CSharp/BuildingGhost.cs')
-rw-r--r--Assembly_CSharp/BuildingGhost.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/Assembly_CSharp/BuildingGhost.cs b/Assembly_CSharp/BuildingGhost.cs
deleted file mode 100644
index ea1db9f..0000000
--- a/Assembly_CSharp/BuildingGhost.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using UnityEngine;
-using UnityEngine.UI;
-
-public class BuildingGhost : MonoBehaviour
-{
- [SerializeField]
- private Text text;
-
- public void SetText(string newText)
- {
- text.text = newText;
- }
-}