aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Assets/Scripts/AIController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/AIController.cs')
-rw-r--r--Assets/Scripts/AIController.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Assets/Scripts/AIController.cs b/Assets/Scripts/AIController.cs
deleted file mode 100644
index 9cb20fb..0000000
--- a/Assets/Scripts/AIController.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using UnityEngine;
-
-public class AIController : MonoBehaviour
-{
- private void Update()
- {
- if (Input.GetKey(KeyCode.H))
- {
- transform.position += Vector3.right * 0.01f;
- }
- else if (Input.GetKey(KeyCode.F))
- {
- transform.position += Vector3.left * 0.01f;
- }
- }
-} \ No newline at end of file