summaryrefslogtreecommitdiff
path: root/Thronefall_1_0/GameCode/VersionNumberDisplay.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_0/GameCode/VersionNumberDisplay.cs')
-rw-r--r--Thronefall_1_0/GameCode/VersionNumberDisplay.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/Thronefall_1_0/GameCode/VersionNumberDisplay.cs b/Thronefall_1_0/GameCode/VersionNumberDisplay.cs
deleted file mode 100644
index 90b50f0..0000000
--- a/Thronefall_1_0/GameCode/VersionNumberDisplay.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using TMPro;
-using UnityEngine;
-
-public class VersionNumberDisplay : MonoBehaviour
-{
- public TextMeshProUGUI display;
-
- private void OnEnable()
- {
- display.text = "version " + Application.version;
- }
-}